Merge pull request #574 from GJRTimmer/update/travis

Follow official Release Policy
This commit is contained in:
mattn 2018-06-12 18:17:37 +09:00 committed by GitHub
commit 53f6d424ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 60 deletions

View File

@ -18,68 +18,9 @@ env:
- GOTAGS=sqlite_vtable - GOTAGS=sqlite_vtable
go: go:
- 1.8.x
- 1.9.x - 1.9.x
- 1.10.x - 1.10.x
matrix:
include:
- os: linux
go: 1.8.x
env: GOTAGS= GOOS=windows GOARCH=amd64
- os: linux
go: 1.8.x
env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64
- os: linux
go: 1.8.x
env: 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" GOOS=windows GOARCH=amd64
- os: linux
go: 1.8.x
env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64
- os: linux
go: 1.8.x
env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64
- os: linux
go: 1.8.x
env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: GOTAGS= GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: 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" GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64
- os: linux
go: 1.9.x
env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: GOTAGS= GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: GOTAGS=libsqlite3 GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: 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" GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: GOTAGS=sqlite_vacuum_full GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: GOTAGS=sqlite_vacuum_incr GOOS=windows GOARCH=amd64
- os: linux
go: 1.10.x
env: GOTAGS=sqlite_vtable GOOS=windows GOARCH=amd64
before_install: before_install:
- | - |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then

View File

@ -11,10 +11,11 @@ go-sqlite3
sqlite3 driver conforming to the built-in database/sql interface sqlite3 driver conforming to the built-in database/sql interface
Supported Golang version: Supported Golang version:
- 1.8.x
- 1.9.x - 1.9.x
- 1.10.x - 1.10.x
[This package follows the official Golang Release Policy.](https://golang.org/doc/devel/release.html#policy)
### Overview ### Overview
- [Installation](#installation) - [Installation](#installation)