diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-03-10 15:48:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 15:48:19 -0400 |
commit | 3dacd6906fc6980170ea948285b4d85b98448ffe (patch) | |
tree | 635ef0a95587a6ca1d7ba2b9779ea0c5ff81ecc8 | |
parent | e3c91f7c4919e96e80c5d0ef8e9acb3e4461b1c3 (diff) | |
download | servo-3dacd6906fc6980170ea948285b4d85b98448ffe.tar.gz servo-3dacd6906fc6980170ea948285b4d85b98448ffe.zip |
Add cert scope to UWP nightly build task.
-rw-r--r-- | etc/taskcluster/decision_task.py | 5 |
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", |