diff options
author | Paul Rouget <me@paulrouget.com> | 2020-03-09 09:06:20 +0100 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2020-03-09 09:35:47 +0100 |
commit | f50f4df496e26062fa07b64b8ad8150c8172e4ce (patch) | |
tree | 59d86252bd4dfc3a0c295c5afc809ed33cc9ff78 /etc/taskcluster/decision_task.py | |
parent | e1f6dfd7165d89246b35233fffe159352884b477 (diff) | |
download | servo-f50f4df496e26062fa07b64b8ad8150c8172e4ce.tar.gz servo-f50f4df496e26062fa07b64b8ad8150c8172e4ce.zip |
Properly sign UWP package
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 4 |
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", |