diff options
author | Jakob Unterwurzacher | 2016-10-09 23:18:23 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-09 23:18:37 +0200 |
commit | b2aae7d36c95e70f0751c8a3a96d4cc07b7b836d (patch) | |
tree | 37f640ff96df4735fd7922a8c8eeb5cab80a20f9 /.travis.yml | |
parent | 15b6ab12b1ad1f90ae15267816636a915367b113 (diff) |
Travis CI: Also build without openssl
Also update Go versions
Diffstat (limited to '.travis.yml')
-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 |