forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bazel: use GCS remote cache (envoyproxy#4050)
Partially addresses envoyproxy#3741 Description: Use GCS remote cache for CI builds when key is provided. Risk Level: Low Testing: CI Docs Changes: Release Notes: Signed-off-by: Lizan Zhou <[email protected]>
- Loading branch information
Showing
5 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [[ ! -z "${BAZEL_REMOTE_CACHE}" ]]; then | ||
if [[ ! -z "${GCP_SERVICE_ACCOUNT_KEY}" ]]; then | ||
# mktemp will create a tempfile with u+rw permission minus umask, it will not be readable by all | ||
# users by default. | ||
GCP_SERVICE_ACCOUNT_KEY_FILE=$(mktemp -t gcp_service_account.XXXXXX.json) | ||
|
||
gcp_service_account_cleanup() { | ||
echo "Deleting service account key file..." | ||
rm -rf "${GCP_SERVICE_ACCOUNT_KEY_FILE}" | ||
} | ||
|
||
trap gcp_service_account_cleanup EXIT | ||
|
||
echo "${GCP_SERVICE_ACCOUNT_KEY}" | base64 --decode > "${GCP_SERVICE_ACCOUNT_KEY_FILE}" | ||
|
||
export BAZEL_BUILD_EXTRA_OPTIONS="${BAZEL_BUILD_EXTRA_OPTIONS} \ | ||
--remote_http_cache=${BAZEL_REMOTE_CACHE} \ | ||
--google_credentials=${GCP_SERVICE_ACCOUNT_KEY_FILE}" | ||
echo "Set up bazel read/write HTTP cache at ${BAZEL_REMOTE_CACHE}." | ||
else | ||
export BAZEL_BUILD_EXTRA_OPTIONS="${BAZEL_BUILD_EXTRA_OPTIONS} \ | ||
--remote_http_cache=${BAZEL_REMOTE_CACHE} --noremote_upload_local_results" | ||
echo "Set up bazel read only HTTP cache at ${BAZEL_REMOTE_CACHE}." | ||
fi | ||
else | ||
echo "No remote cache bucket is set, skipping setup remote cache." | ||
fi |