diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-05-30 13:04:45 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-06-03 10:41:17 -0400 |
commit | 96c51cf173ce3cb1526fe58f904e67ffc771893d (patch) | |
tree | c3f68760f38adc54e047036b96b34e69ebbc7f17 /etc/taskcluster | |
parent | 8ae287375f9c711ea108ff0255e08eb4ae1e7691 (diff) | |
download | servo-96c51cf173ce3cb1526fe58f904e67ffc771893d.tar.gz servo-96c51cf173ce3cb1526fe58f904e67ffc771893d.zip |
Package DLLs correctly for Windows cross builds.
Diffstat (limited to 'etc/taskcluster')
-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 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()) ) |