diff options
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 6e3db16..d848911 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ language: go -# Debian Jessie has Go 1.3.3, Fedora 22 has Go 1.4.3, -# Fedora 23 has Go 1.5.1 +# Build with the lastest versions of Go 1.4, 1.5, 1.6, 1.7 +# See https://golang.org/dl/ go: - 1.4.3 - - 1.5.1 - - 1.6 - - tip + - 1.5.4 + - 1.6.3 + - 1.7.1 install: - go get . @@ -14,6 +14,7 @@ install: script: - openssl version - go build + - ./build-without-openssl.bash - ./build.bash - ./test.bash |