aboutsummaryrefslogtreecommitdiffstats
path: root/etc/taskcluster/decision_task.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2020-03-09 14:48:19 -0400
committerGitHub <noreply@github.com>2020-03-09 14:48:19 -0400
commitcd171ff28a8bae50f184ccf83c80ce8de8cef0f6 (patch)
tree764a8ea270e97e32e0fd5e94a4a305bd96821e1b /etc/taskcluster/decision_task.py
parentad1a4adac56fc86c12f59da92f0539d8e94a4848 (diff)
parentf50f4df496e26062fa07b64b8ad8150c8172e4ce (diff)
downloadservo-cd171ff28a8bae50f184ccf83c80ce8de8cef0f6.tar.gz
servo-cd171ff28a8bae50f184ccf83c80ce8de8cef0f6.zip
Auto merge of #25925 - paulrouget:uwpsign, r=jdm
Properly sign UWP package Supersede #25661 Fix #25362 --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #25362 (GitHub issue number if applicable)
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r--etc/taskcluster/decision_task.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py
index 1fe9c77690e..38107fda1a2 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -311,6 +311,8 @@ def windows_arm64():
return (
windows_build_task("UWP dev build", arch="arm64", package=False)
.with_treeherder("Windows arm64", "UWP-Dev")
+ .with_features("taskclusterProxy")
+ .with_scopes("secrets:get:project/servo/windows-codesign-cert/latest")
.with_script(
"python mach build --dev --target=aarch64-uwp-windows-msvc",
"python mach package --dev --target aarch64-uwp-windows-msvc --uwp=arm64",
@@ -324,6 +326,8 @@ def windows_uwp_x64():
return (
windows_build_task("UWP dev build", package=False)
.with_treeherder("Windows x64", "UWP-Dev")
+ .with_features("taskclusterProxy")
+ .with_scopes("secrets:get:project/servo/windows-codesign-cert/latest")
.with_script(
"python mach build --dev --target=x86_64-uwp-windows-msvc",
"python mach package --dev --target=x86_64-uwp-windows-msvc --uwp=x64",