diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml index c81b17e..ee975e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: go go: - - 1.8 - - tip + - 1.8.x + - 1.9.x go_import_path: gopkg.in/src-d/go-git.v4 @@ -11,11 +11,6 @@ env: - GIT_VERSION=v1.9.3 - GIT_VERSION=v2.11.0 -matrix: - fast_finish: true - allow_failures: - - go: tip - cache: directories: - $HOME/.git-dist @@ -28,15 +23,6 @@ before_install: - git config --global user.email "travis@example.com" - git config --global user.name "Travis CI" - # we only decrypt the SSH key when we aren't in a pull request - - > - if [ "$TRAVIS_PULL_REQUEST" = "false" ] ; then \ - bash .travis/install_key.sh; \ - export SSH_TEST_PRIVATE_KEY=$HOME/.travis/deploy.pem; \ - else \ - export SSH_AUTH_SOCK=""; \ - fi - install: - go get -v -t ./... @@ -48,4 +34,4 @@ script: - go vet ./... after_success: - - bash <(curl -s https://codecov.io/bash)
\ No newline at end of file + - bash <(curl -s https://codecov.io/bash) |