aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2020-03-10 19:52:21 -0400
committerGitHub <noreply@github.com>2020-03-10 19:52:21 -0400
commitdd6699c49c72021afaad3be1b06e40b793a69fe2 (patch)
tree36ec36ff998df22d8ac6b0cbc1e3d5b91397bc88
parentec5315d76f6d7e1afd4500f2b411af234c0f1e4c (diff)
parent3dacd6906fc6980170ea948285b4d85b98448ffe (diff)
downloadservo-dd6699c49c72021afaad3be1b06e40b793a69fe2.tar.gz
servo-dd6699c49c72021afaad3be1b06e40b793a69fe2.zip
Auto merge of #25943 - servo:jdm-patch-40, r=Manishearth
Add cert scope to UWP nightly build task.
-rw-r--r--etc/taskcluster/decision_task.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py
index 38107fda1a2..10006c9cff3 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -343,7 +343,10 @@ def uwp_nightly():
windows_build_task("Nightly UWP build and upload", package=False)
.with_treeherder("Windows x64", "UWP-Nightly")
.with_features("taskclusterProxy")
- .with_scopes("secrets:get:project/servo/s3-upload-credentials")
+ .with_scopes(
+ "secrets:get:project/servo/s3-upload-credentials",
+ "secrets:get:project/servo/windows-codesign-cert/latest",
+ )
.with_script(
"python mach build --release --target=x86_64-uwp-windows-msvc",
"python mach build --release --target=aarch64-uwp-windows-msvc",