diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-11 16:10:28 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-05-11 16:10:28 +0800 |
commit | c05db38a5ee87c1700faf929db0a9156b263ec95 (patch) | |
tree | bb7ebfa574a65877c95c28cfb0022e05ac190e1a | |
parent | 34c56766b7bae7e31c9e7c628fe5a01e6dcc76f9 (diff) | |
parent | bc3b406bffc9c6f38420f1504cb7eba0b92cad3b (diff) | |
download | dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar.gz dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar.bz2 dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar.lz dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar.xz dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.tar.zst dexon-c05db38a5ee87c1700faf929db0a9156b263ec95.zip |
Merge pull request #2515 from karalabe/multigo-travis
travis: run CI builds against multiple Go versions
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index c1d545c54..24486d4a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,12 @@ language: go go: - 1.4.2 + - 1.5.4 + - 1.6.2 install: # - go get code.google.com/p/go.tools/cmd/goimports # - go get github.com/golang/lint/golint - # - go get golang.org/x/tools/cmd/vet + # - go get golang.org/x/tools/cmd/vet - go get golang.org/x/tools/cmd/cover before_script: # - gofmt -l -w . @@ -24,6 +26,6 @@ notifications: webhooks: urls: - https://webhooks.gitter.im/e/e09ccdce1048c5e03445 - on_success: change + on_success: change on_failure: always - on_start: false + on_start: false |