diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-08-21 22:55:18 -0700 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-08-21 22:55:18 -0700 |
commit | 57adaaaf1880ba00e3f9f0c5b75fbeb28c0f20a9 (patch) | |
tree | 0dc038fcd8abbf892ffaf475b73906e96ff21381 /etc/taskcluster/decision_task.py | |
parent | c98878f8337bc3a4e2596ece03c46692d6f2ff82 (diff) | |
download | servo-57adaaaf1880ba00e3f9f0c5b75fbeb28c0f20a9.tar.gz servo-57adaaaf1880ba00e3f9f0c5b75fbeb28c0f20a9.zip |
Remove explicit nuget setup in CI.
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-rw-r--r-- | etc/taskcluster/decision_task.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index fee990f3252..4400e62ba5a 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -377,14 +377,6 @@ def windows_arm64(): return ( 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", - 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("python mach build --dev --uwp --win-arm64") .find_or_create("build.windows_uwp_arm64_dev." + CONFIG.task_id()) ) @@ -394,14 +386,6 @@ 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()) ) |