Commit 9c260c76 authored by Eric Chiang's avatar Eric Chiang

Merge pull request #455 from ericchiang/update-go-versions-for-travis

*: Update Go versions used for Travis tests and test tip
parents ca0655cb 2362154d
...@@ -5,8 +5,9 @@ services: ...@@ -5,8 +5,9 @@ services:
language: go language: go
go: go:
- 1.5.3 - 1.5.4
- 1.6 - 1.6.2
- tip
env: env:
- DEX_TEST_DSN="postgres://postgres@127.0.0.1:15432/postgres?sslmode=disable" ISOLATED=true - DEX_TEST_DSN="postgres://postgres@127.0.0.1:15432/postgres?sslmode=disable" ISOLATED=true
...@@ -43,3 +44,7 @@ deploy: ...@@ -43,3 +44,7 @@ deploy:
notifications: notifications:
email: false email: false
matrix:
allow_failures:
- go: tip
MAJOR_GOVERSION=$( go version | grep -o 'go1\.[0-9]') # For development versions of Go, these will be empty.
FULL_GOVERSION=$( go version| grep -o 'go1\.[0-9|\.]*' ) MAJOR_GOVERSION=$( go version | grep -o 'go1\.[0-9]' || true)
FULL_GOVERSION=$( go version| grep -o 'go1\.[0-9|\.]*' || true)
# The list of unsupported major go versions. # The list of unsupported major go versions.
UNSUPPORTED=( "go1.0" "go1.1" "go1.2" "go1.3" "go1.4" ) UNSUPPORTED=( "go1.0" "go1.1" "go1.2" "go1.3" "go1.4" )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment