Build with UWP configuration on CI.

This commit is contained in:
Josh Matthews 2019-07-26 15:56:00 -04:00
parent e9a7544e7e
commit 81914e5f3a

View file

@ -129,7 +129,6 @@ windows_build_env = {
}, },
"arm64": { "arm64": {
"PKG_CONFIG_ALLOW_CROSS": "1", "PKG_CONFIG_ALLOW_CROSS": "1",
"GSTREAMER_1_0_ROOT_ARM64": "%HOMEDRIVE%%HOMEPATH%\\repo\\.servo\\msvc-dependencies\\gstreamer-uwp\\1.16.0.3\\arm64\\",
}, },
"all": { "all": {
"PYTHON3": "%HOMEDRIVE%%HOMEPATH%\\python3\\python.exe", "PYTHON3": "%HOMEDRIVE%%HOMEPATH%\\python3\\python.exe",
@ -377,12 +376,15 @@ def windows_arm64():
return ( return (
windows_build_task("Dev build", arch="arm64", package=False) windows_build_task("Dev build", arch="arm64", package=False)
.with_treeherder("Windows arm64") .with_treeherder("Windows arm64")
.with_script( .with_file_mount(
"python mach build --dev --libsimpleservo \ "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe",
--target aarch64-pc-windows-msvc \ path="nuget.exe"
--with-raqote \
--without-wgl",
) )
.with_script(
"%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()) .find_or_create("build.windows_arm64_dev." + CONFIG.task_id())
) )