73e5c36f25
* Upgrade xorm to v1.2.2 (#16663) Backport #16663 Fix #16683 * Upgrade xorm to v1.2.2 * Change the Engine interface to match xorm v1.2.2 * Add test to ensure that dumping of login sources remains correct (#16847) #16831 has occurred because of a missed regression. This PR adds a simple test to try to prevent this occuring again. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
45 lines
1 KiB
YAML
Vendored
45 lines
1 KiB
YAML
Vendored
language: go
|
|
|
|
go:
|
|
- 1.14.x
|
|
- 1.15.x
|
|
- 1.16.x
|
|
|
|
sudo: true
|
|
|
|
env:
|
|
global:
|
|
- PGUSER=postgres
|
|
- PQGOSSLTESTS=1
|
|
- PQSSLCERTTEST_PATH=$PWD/certs
|
|
- PGHOST=127.0.0.1
|
|
- GODEBUG=x509ignoreCN=0
|
|
matrix:
|
|
- PGVERSION=10
|
|
- PGVERSION=9.6
|
|
- PGVERSION=9.5
|
|
- PGVERSION=9.4
|
|
|
|
before_install:
|
|
- ./.travis.sh postgresql_uninstall
|
|
- ./.travis.sh pgdg_repository
|
|
- ./.travis.sh postgresql_install
|
|
- ./.travis.sh postgresql_configure
|
|
- ./.travis.sh client_configure
|
|
- go get golang.org/x/tools/cmd/goimports
|
|
- go get golang.org/x/lint/golint
|
|
- GO111MODULE=on go get honnef.co/go/tools/cmd/staticcheck@2020.1.3
|
|
|
|
before_script:
|
|
- createdb pqgotest
|
|
- createuser -DRS pqgossltest
|
|
- createuser -DRS pqgosslcert
|
|
|
|
script:
|
|
- >
|
|
goimports -d -e $(find -name '*.go') | awk '{ print } END { exit NR == 0 ? 0 : 1 }'
|
|
- go vet ./...
|
|
- staticcheck -go 1.13 ./...
|
|
- golint ./...
|
|
- PQTEST_BINARY_PARAMETERS=no go test -race -v ./...
|
|
- PQTEST_BINARY_PARAMETERS=yes go test -race -v ./...
|