aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2021-01-25 20:44:54 +0100
committerSimon Sapin <simon.sapin@exyr.org>2021-01-26 09:14:44 +0100
commit33651a94ed1f05e0501a799fed9e54292a538a11 (patch)
tree815716fb13ae54f7f44ac79fc72837938ce8b00a /python
parent1ba6f598cb6af2ff3239ef781118b33861d6228e (diff)
downloadservo-33651a94ed1f05e0501a799fed9e54292a538a11.tar.gz
servo-33651a94ed1f05e0501a799fed9e54292a538a11.zip
Upgrade Xargo to v0.3.22
This includes a “Fix for changed rustc directory layout.” change: https://github.com/japaric/xargo/blob/master/CHANGELOG.md#v0322---2020-07-29 We use Xargo to compile rust-std for Windows UWP targets. I built `xargo.exe` on Taskcluster with task https://community-tc.services.mozilla.com/tasks/IHwGq_ViRpGuomBx82XmpQ created through https://community-tc.services.mozilla.com/tasks/create with this definition: ```yaml provisionerId: proj-servo workerType: win2016 schedulerId: taskcluster-github created: '2021-01-25T19:39:29.952Z' deadline: '2021-01-26T19:39:29.952Z' expires: '2022-01-25T19:39:29.952Z' payload: mounts: - file: rustup-init.exe content: url: https://win.rustup.rs/x86_64 command: - '%HOMEDRIVE%%HOMEPATH%\rustup-init.exe --profile=minimal -y' - set PATH=%HOMEDRIVE%%HOMEPATH%\.cargo\bin;%PATH% - |- cargo install xargo --version 0.3.22 copy %HOMEDRIVE%%HOMEPATH%\.cargo\bin\xargo.exe . artifacts: - name: public/xargo.exe path: xargo.exe type: file expires: '2022-01-25T15:07:23.782706Z' maxRunTime: 5400 metadata: name: Xargo build for Windows description: '' owner: infra@servo.org source: https://community-tc.services.mozilla.com/tasks/create ``` (Note the "update timestamps" button in the bottom-right menu.) I then created a ZIP file that contains `xargo-v0.3.22/xargo.exe` and uploaded it with `aws s3 cp ./xargo-v0.3.22.zip s3://servo-deps-2/msvc-deps/` where our build system can find it.
Diffstat (limited to 'python')
-rw-r--r--python/servo/packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/packages.py b/python/servo/packages.py
index ea903a3913b..cab8af5fae8 100644
--- a/python/servo/packages.py
+++ b/python/servo/packages.py
@@ -11,5 +11,5 @@ WINDOWS_MSVC = {
"openssl": "111.3.0+1.1.1c-vs2017-2019-09-18",
"gstreamer-uwp": "1.16.0.5",
"openxr-loader-uwp": "1.0",
- "xargo": "v0.3.17",
+ "xargo": "v0.3.22",
}