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:
Родитель
185e3a39e0
Коммит
b9055d0423
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче