diff options
Diffstat (limited to 'taskcluster/scripts/misc/wgpu-deps-vendoring.sh')
-rwxr-xr-x | taskcluster/scripts/misc/wgpu-deps-vendoring.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/taskcluster/scripts/misc/wgpu-deps-vendoring.sh b/taskcluster/scripts/misc/wgpu-deps-vendoring.sh new file mode 100755 index 0000000000..1b814b7e95 --- /dev/null +++ b/taskcluster/scripts/misc/wgpu-deps-vendoring.sh @@ -0,0 +1,26 @@ +#!/bin/bash +set -x -e -v + +# This scripts uses `cargo-vendor` to download all the dependencies needed +# to test `wgpu`, and exports those dependencies as a tarball. +# This avoids having to download these dependencies on every test job +# that tests `wgpu`. + +UPLOAD_DIR=$HOME/artifacts + +cd $GECKO_PATH +export PATH=$PATH:$MOZ_FETCHES_DIR/rustc/bin:$HOME/.cargo/bin +cd gfx/wgpu/ +mkdir .cargo +cargo vendor --sync ./Cargo.toml > .cargo/config +mkdir wgpu-deps +mv vendor .cargo wgpu-deps/ +mkdir wgpu-deps/cargo-apk +# Until there's a version of cargo-apk published on crates.io that has +# https://github.com/rust-windowing/android-rs-glue/pull/223, we need to use +# an unpublished version. +cargo install --path $MOZ_FETCHES_DIR/android-rs-glue/cargo-apk --root wgpu-deps/cargo-apk cargo-apk +tar caf wgpu-deps.tar.bz2 wgpu-deps + +mkdir -p $UPLOAD_DIR +mv wgpu-deps.tar.bz2 $UPLOAD_DIR/ |