We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402ce3b commit 0a9772bCopy full SHA for 0a9772b
kokoro/ubuntu/release.sh
@@ -8,14 +8,16 @@ set -o errexit
8
# Display commands being run.
9
set -o xtrace
10
11
-# More recent Cloud SDK requires Python 3.5 (b/194714889)
12
-export CLOUDSDK_PYTHON=python3.5
13
-
14
gsutil -q cp "gs://ct4e-m2-repositories-for-kokoro/m2-cache.tar" - \
15
| tar -C "${HOME}" -xf -
16
17
export CLOUDSDK_CORE_DISABLE_USAGE_REPORTING=true
18
gcloud components update --quiet
+
+# More recent Cloud SDK requires Python 3.5 (b/194714889)
+if [ -z "$CLOUDSDK_PYTHON" ]; then
19
+ export CLOUDSDK_PYTHON=python3.5
20
+fi
21
gcloud components install app-engine-java --quiet
22
23
echo "OAUTH_CLIENT_ID: ${OAUTH_CLIENT_ID}"
0 commit comments