Disable remote caching for now (#612)

* Disable remote caching for now

* Update .travis.yml
This commit is contained in:
Preston Van Loon 2018-10-03 14:28:00 -04:00 committed by Raul Jordan
parent 675be412b3
commit a57b19beb4

View File

@ -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