We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2079068 commit 4f5def7Copy full SHA for 4f5def7
1 file changed
.travis.yml
@@ -16,7 +16,20 @@ before_install:
16
- cp target/travis/logging.properties logging.properties
17
install: mvn install --quiet -Djava.util.logging.config.file=logging.properties -DskipTests=true
18
-Dgpg.skip=true
19
+cache:
20
+ directories:
21
+ - "$HOME/google-cloud-sdk/"
22
script:
23
+- |
24
+ if [ ! -d "$HOME/google-cloud-sdk/bin" ]
25
+ then
26
+ rm -rf "$HOME/google-cloud-sdk"
27
+ export CLOUDSDK_CORE_DISABLE_PROMPTS=1
28
+ curl https://sdk.cloud.google.com | bash
29
+ fi
30
+ gcloud components update
31
+ source "$HOME/google-cloud-sdk/path.bash.inc"
32
+ gcloud version
33
- travis_wait 60 utilities/verify.sh
34
after_success:
35
- utilities/after_success.sh
0 commit comments