blob: 74f9a68e191c60fde9504a37bb261a52d1e8c8b0 (
plain) (
tree)
|
|
language: go
go:
- 1.7
- tip
matrix:
allow_failures:
- go: tip
before_install:
# we only decrypt the ssh key when we aren't in a pull request
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then openssl aes-256-cbc -K $encrypted_1477e58fe67a_key -iv $encrypted_1477e58fe67a_iv -in .travis/deploy.pem.enc -out .travis/deploy.pem -d; fi'
- eval "$(ssh-agent -s)"
- chmod 600 .travis/deploy.pem
- ssh-add .travis/deploy.pem
install:
- rm -rf $GOPATH/src/gopkg.in/src-d
- mkdir -p $GOPATH/src/gopkg.in/src-d
- ln -s $PWD $GOPATH/src/gopkg.in/src-d/go-git.v4
- cd $GOPATH/src/gopkg.in/src-d/go-git.v4
- go get -v -t ./...
script:
- make test-coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
|