diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-07-26 15:56:00 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-07-27 09:55:43 -0400 |
commit | 81914e5f3aead4110ea9de06f9f20a2026ba0ea9 (patch) | |
tree | a573c1e4212ebf73b1d8c691f27a70f31f2fe63c /etc/taskcluster/decision_task.py | |
parent | e9a7544e7e4daedba0db31dc1a9432cf7fdb38da (diff) | |
download | servo-81914e5f3aead4110ea9de06f9f20a2026ba0ea9.tar.gz servo-81914e5f3aead4110ea9de06f9f20a2026ba0ea9.zip |
Build with UWP configuration on CI.
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index d48b16583c0..de947985bc7 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -129,7 +129,6 @@ windows_build_env = { }, "arm64": { "PKG_CONFIG_ALLOW_CROSS": "1", - "GSTREAMER_1_0_ROOT_ARM64": "%HOMEDRIVE%%HOMEPATH%\\repo\\.servo\\msvc-dependencies\\gstreamer-uwp\\1.16.0.3\\arm64\\", }, "all": { "PYTHON3": "%HOMEDRIVE%%HOMEPATH%\\python3\\python.exe", @@ -377,12 +376,15 @@ def windows_arm64(): return ( windows_build_task("Dev build", arch="arm64", package=False) .with_treeherder("Windows arm64") + .with_file_mount( + "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe", + path="nuget.exe" + ) .with_script( - "python mach build --dev --libsimpleservo \ - --target aarch64-pc-windows-msvc \ - --with-raqote \ - --without-wgl", + "%HOMEDRIVE%%HOMEPATH%\\nuget.exe install ANGLE.WindowsStore.Servo \ + -Version 2.1.13 -o %HOMEDRIVE%%HOMEPATH%\\repo\\support\\hololens\\packages", ) + .with_script("python mach build --dev --uwp --win-arm64") .find_or_create("build.windows_arm64_dev." + CONFIG.task_id()) ) |