aboutsummaryrefslogtreecommitdiffstats
path: root/etc/taskcluster
diff options
context:
space:
mode:
Diffstat (limited to 'etc/taskcluster')
-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 9c9686f0573..604c94cf12b 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -358,14 +358,17 @@ def android_x86_wpt():
def windows_x86():
return (
- windows_build_task("Dev build", package=False, arch="x86")
+ windows_build_task("Dev build", arch="x86")
.with_treeherder("Windows x86")
.with_env(**{
"VCVARSALL_PATH": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Auxiliary\\Build"
})
.with_script(
"python mach build --dev --target i686-pc-windows-msvc",
+ "python mach package --dev --target i686-pc-windows-msvc",
)
+ .with_artifacts("repo/target/i686-pc-windows-msvc/debug/msi/Servo.exe",
+ "repo/target/i686-pc-windows-msvc/debug/msi/Servo.zip")
.find_or_create("build.windows_x86_dev." + CONFIG.task_id())
)