Skip to content

Commit

Permalink
WIP: print sqlite3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
charlievieth committed Nov 7, 2024
1 parent 032d77d commit 94aee4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
# Handle issues with the upgrade to icu4c v76.
[[ -e "$(brew --prefix)/opt/icu4c" ]] || \
brew reinstall icu4c
- if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt update
sudo apt upgrade -y
- uses: actions/setup-go@v2
with:
Expand All @@ -45,7 +49,9 @@ jobs:
run: go-acc . -- -race -v -tags ""

- name: 'Tags: libsqlite3'
run: go-acc . -- -race -v -tags "libsqlite3"
run: |
sqlite3 --version
go-acc . -- -race -v -tags "libsqlite3"
- name: 'Tags: full'
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"
Expand Down

0 comments on commit 94aee4a

Please sign in to comment.