Skip to content

Commit 94aee4a

Browse files
committed
WIP: print sqlite3 version
1 parent 032d77d commit 94aee4a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/go.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
# Handle issues with the upgrade to icu4c v76.
2727
[[ -e "$(brew --prefix)/opt/icu4c" ]] || \
2828
brew reinstall icu4c
29+
- if: startsWith(matrix.os, 'ubuntu')
30+
run: |
31+
sudo apt update
32+
sudo apt upgrade -y
2933
3034
- uses: actions/setup-go@v2
3135
with:
@@ -45,7 +49,9 @@ jobs:
4549
run: go-acc . -- -race -v -tags ""
4650

4751
- name: 'Tags: libsqlite3'
48-
run: go-acc . -- -race -v -tags "libsqlite3"
52+
run: |
53+
sqlite3 --version
54+
go-acc . -- -race -v -tags "libsqlite3"
4955
5056
- name: 'Tags: full'
5157
run: go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_column_metadata sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions sqlite_os_trace sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_unlock_notify sqlite_userauth sqlite_vacuum_incr sqlite_vtable"

0 commit comments

Comments
 (0)