aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2022-07-23 08:57:35 -0600
committermattn <mattn.jp@gmail.com>2022-08-16 21:21:55 +0900
commita2e94c9d580d202e5a4ebf1c731a51d187034775 (patch)
tree677b3a47808a93ca50094a8a59e6922fba88d6b7 /.github
parentUpdate amalgamation code (diff)
downloadgolite-a2e94c9d580d202e5a4ebf1c731a51d187034775.tar.gz
golite-a2e94c9d580d202e5a4ebf1c731a51d187034775.tar.xz
Add build tag to enable OSTRACE() logging
This commit adds the `sqlite_os_trace` build tag which sets the `SQLITE_FORCE_OS_TRACE` and `SQLITE_DEBUG_OS_TRACE` compilation flags. This produces verbose debugging output of every operating system call made by SQLite.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/go.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml
index dc1bf0c..ec8b30a 100644
--- a/.github/workflows/go.yaml
+++ b/.github/workflows/go.yaml
@@ -44,7 +44,7 @@ jobs:
run: go-acc . -- -race -v -tags "libsqlite3"
- name: 'Tags: full'
- run: go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable sqlite_unlock_notify sqlite_column_metadata"
+ run: go-acc . -- -race -v -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_os_trace sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable sqlite_unlock_notify sqlite_column_metadata"
- name: 'Tags: vacuum'
run: go-acc . -- -race -v -tags "sqlite_vacuum_full"