diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-02-25 15:20:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 15:20:34 -0500 |
commit | 9e928a487eadcb9695d20528d558126ab9af50e6 (patch) | |
tree | c1d948f7cf207e44f09474bab6c950d060cdd496 /etc | |
parent | 30f927f67b797a7c891407a9d73252ce4ee7ac3d (diff) | |
download | servo-9e928a487eadcb9695d20528d558126ab9af50e6.tar.gz servo-9e928a487eadcb9695d20528d558126ab9af50e6.zip |
Fix UWP nightly build.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/taskcluster/decision_task.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 51a725976e8..67ea48de4fc 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -356,10 +356,10 @@ def uwp_nightly(rdp=False): "secrets:get:project/servo/windows-codesign-cert/latest", ) .with_script( - "python3 mach build --release --target=x86_64-uwp-windows-msvc", - "python3 mach build --release --target=aarch64-uwp-windows-msvc", - "python3 mach package --release --target=x86_64-uwp-windows-msvc --uwp=x64 --uwp=arm64", - "python3 mach upload-nightly uwp --secret-from-taskcluster", + "python mach build --release --target=x86_64-uwp-windows-msvc", + "python mach build --release --target=aarch64-uwp-windows-msvc", + "python mach package --release --target=x86_64-uwp-windows-msvc --uwp=x64 --uwp=arm64", + "python mach upload-nightly uwp --secret-from-taskcluster", ) .with_artifacts(appx_artifact) .with_max_run_time_minutes(3 * 60) |