Bug 1805699 - Set GCP sccache bucket prefix for Thunderbird builds. r=dandarnell

Set a sccache bucket name prefix for GCP similar to the AWS one. Fixes broken
sccache configuration in CI.

Differential Revision: https://phabricator.services.mozilla.com/D164726
This commit is contained in:
Rob Lemley 2022-12-14 19:17:39 +00:00
Родитель 185e3a39e0
Коммит b9055d0423
1 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -3,6 +3,17 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Must be included before M-C:build/mozconfig.cache
if test -z "$aws_prefix" -a -z "$bucket" -a -z "$SCCACHE_DISABLE"; then
aws_prefix="comm-central"
if test -z "$bucket" -a -z "$SCCACHE_DISABLE"; then
if test -n "$TASKCLUSTER_WORKER_LOCATION" -a -x "$(command -v jq)"; then
cloud=$(echo $TASKCLUSTER_WORKER_LOCATION | jq .cloud | tr -d \")
case $cloud in
google)
gcp_prefix="comm-sccache"
;;
aws)
aws_prefix="comm-central"
;;
esac
fi
fi