diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-06-12 17:27:42 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-06-12 17:27:42 +0200 |
commit | 7926b8ed9630921b24c76b973ffa5b270c07a1c8 (patch) | |
tree | 7b678f9ad5b109498d2fd543a14d6276e4336c3f | |
parent | fix/511 (diff) | |
download | golite-7926b8ed9630921b24c76b973ffa5b270c07a1c8.tar.gz golite-7926b8ed9630921b24c76b973ffa5b270c07a1c8.tar.xz |
Update Travis-CI
Moved `sqlite_vacuum_incr` and `sqlite_vtable` to module job.
* `sqlite_vacuum_incr` will only store the required auto vacuum information into the datbase page, and not peform an vacuum therefor this can be added easily to the module job.
- `sqlite_vtable` does not require an seperate job because user will include the tag in combination with others.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index a6030cf..a21c817 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,10 +12,8 @@ env: matrix: - GOTAGS= - GOTAGS=libsqlite3 - - GOTAGS="sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth" + - GOTAGS="sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable" - GOTAGS=sqlite_vacuum_full - - GOTAGS=sqlite_vacuum_incr - - GOTAGS=sqlite_vtable go: - 1.9.x |