mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-13 22:51:08 -05:00
Merge pull request #691 from MariadeAnton/MdA-travis-test
Only bypass "bandwidth limit exceeded" errors on pushes
This commit is contained in:
commit
f4c729bd22
1 changed files with 2 additions and 2 deletions
|
@ -12,10 +12,10 @@ before_install:
|
||||||
# for git to use when cloning from googlesource.com.
|
# for git to use when cloning from googlesource.com.
|
||||||
# Bypasses "bandwidth limit exceeded" errors.
|
# Bypasses "bandwidth limit exceeded" errors.
|
||||||
# See github.com/golang/go/issues/12933
|
# See github.com/golang/go/issues/12933
|
||||||
- openssl aes-256-cbc -K $encrypted_3df18f9af81d_key -iv $encrypted_3df18f9af81d_iv -in dist/gitcookie.sh.enc -out dist/gitcookie.sh -d
|
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then openssl aes-256-cbc -K $encrypted_3df18f9af81d_key -iv $encrypted_3df18f9af81d_iv -in dist/gitcookie.sh.enc -out dist/gitcookie.sh -d; fi
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- bash dist/gitcookie.sh
|
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash dist/gitcookie.sh; fi
|
||||||
- go get -t ./...
|
- go get -t ./...
|
||||||
- go get golang.org/x/tools/cmd/vet
|
- go get golang.org/x/tools/cmd/vet
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue