diff --git a/.travis.yml b/.travis.yml index f3b6044517..3081f8b33f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,14 +40,6 @@ matrix: chmod +x install.sh ./install.sh --user rm -f install.sh - # Decrypt service account (only works on prysmaticlabs branches) - - if [[ $encrypted_64ca747eb448_iv ]]; then - openssl aes-256-cbc -K $encrypted_64ca747eb448_key -iv $encrypted_64ca747eb448_iv - -in service-account.json.enc -out /tmp/service-account.json -d; - REMOTE_FLAGS=--config=remote-rw; - else - REMOTE_FLAGS=--config=remote; - fi install: true # Skip install go packages. @@ -57,13 +49,13 @@ matrix: bazel \ --bazelrc=.travis-bazelrc \ build \ - //... $REMOTE_FLAGS + //... # Run all tests. - | bazel \ --bazelrc=.travis-bazelrc \ test \ - //... $REMOTE_FLAGS + //... # Check that BUILD files are formatted correctly. - ./scripts/check_gazelle.sh @@ -91,14 +83,6 @@ matrix: chmod +x install.sh ./install.sh --user rm -f install.sh - # Decrypt service account (only works on prysmaticlabs branches) - - if [[ $encrypted_64ca747eb448_iv ]]; then - openssl aes-256-cbc -K $encrypted_64ca747eb448_key -iv $encrypted_64ca747eb448_iv - -in service-account.json.enc -out /tmp/service-account.json -d; - REMOTE_FLAGS=--config=remote-rw; - else - REMOTE_FLAGS=--config=remote; - fi install: true # Skip install go packages. @@ -108,13 +92,13 @@ matrix: bazel \ --bazelrc=.travis-bazelrc \ build \ - //... $REMOTE_FLAGS + //... # Run all tests. - | bazel \ --bazelrc=.travis-bazelrc \ test \ - //... $REMOTE_FLAGS + //... # Shutdown must be last. - bazel shutdown