summaryrefslogtreecommitdiffstats
path: root/vendor/backtrace/ci/run-docker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/backtrace/ci/run-docker.sh')
-rwxr-xr-xvendor/backtrace/ci/run-docker.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/backtrace/ci/run-docker.sh b/vendor/backtrace/ci/run-docker.sh
deleted file mode 100755
index 8aa6d84a4..000000000
--- a/vendor/backtrace/ci/run-docker.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-# Small script to run tests for a target (or all targets) inside all the
-# respective docker images.
-
-set -ex
-
-run() {
- docker build -t backtrace -f ci/docker/$1/Dockerfile ci
- mkdir -p target
- docker run \
- --user `id -u`:`id -g` \
- --rm \
- --init \
- --volume $(dirname $(dirname `which cargo`)):/cargo \
- --env CARGO_HOME=/cargo \
- --volume `rustc --print sysroot`:/rust:ro \
- --env TARGET=$1 \
- --volume `pwd`:/checkout:ro \
- --volume `pwd`/target:/checkout/target \
- --workdir /checkout \
- --privileged \
- --env RUSTFLAGS \
- backtrace \
- bash \
- -c 'PATH=$PATH:/rust/bin exec ci/run.sh'
-}
-
-if [ -z "$1" ]; then
- for d in `ls ci/docker/`; do
- run $d
- done
-else
- run $1
-fi