Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add x64 UWP to CI.
  • Loading branch information
jdm committed Aug 21, 2019
1 parent de76163 commit a62fb72
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions etc/taskcluster/decision_task.py
Expand Up @@ -29,6 +29,7 @@ def main(task_for):
linux_tidy_unit_docs,
windows_unit,
windows_arm64,
windows_uwp_x64,
macos_unit,
magicleap_dev,
android_arm32_dev,
Expand All @@ -54,7 +55,7 @@ def main(task_for):

"try-mac": [macos_unit],
"try-linux": [linux_tidy_unit_docs, linux_release],
"try-windows": [windows_unit, windows_arm64],
"try-windows": [windows_unit, windows_arm64, windows_uwp_x64],
"try-magicleap": [magicleap_dev],
"try-arm": [windows_arm64],
"try-wpt": [linux_wpt],
Expand Down Expand Up @@ -374,7 +375,7 @@ def android_x86_wpt():

def windows_arm64():
return (
windows_build_task("Dev build", arch="arm64", package=False)
windows_build_task("UWP dev build", arch="arm64", package=False)
.with_treeherder("Windows arm64")
.with_file_mount(
"https://dist.nuget.org/win-x86-commandline/latest/nuget.exe",
Expand All @@ -385,7 +386,24 @@ def windows_arm64():
-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_uwp_arm64_dev." + CONFIG.task_id())
)


def windows_uwp_x64():
return (
windows_build_task("UWP dev build", package=False)
.with_treeherder("Windows x64")
.with_file_mount(
"https://dist.nuget.org/win-x86-commandline/latest/nuget.exe",
path="nuget.exe"
)
.with_script(
"%HOMEDRIVE%%HOMEPATH%\\nuget.exe install ANGLE.WindowsStore.Servo \
-Version 2.1.13 -o %HOMEDRIVE%%HOMEPATH%\\repo\\support\\hololens\\packages",
)
.with_script("mach build --dev --uwp")
.find_or_create("build.windows_uwp_x64_dev." + CONFIG.task_id())
)


Expand Down

0 comments on commit a62fb72

Please sign in to comment.