compiler-builtins-zynq/ci/run-docker.sh

39 lines
943 B
Bash
Raw Normal View History

# Small script to run tests for a target (or all targets) inside all the
# respective docker images.
set -ex
run() {
local target=$1
echo $target
# This directory needs to exist before calling docker, otherwise docker will create it but it
# will be owned by root
mkdir -p target
docker build -t $target ci/docker/$target
docker run \
--rm \
--user $(id -u):$(id -g) \
-e CARGO_HOME=/cargo \
-e CARGO_TARGET_DIR=/target \
-e RUST_COMPILER_RT_ROOT \
2019-06-06 07:19:26 +08:00
-v $(dirname $(dirname `which cargo`)):/cargo \
-v `pwd`/target:/target \
-v `pwd`:/checkout:ro \
-v `rustc --print sysroot`:/rust:ro \
-w /checkout \
--init \
2019-04-03 00:35:47 +08:00
$target \
2016-10-01 09:21:15 +08:00
sh -c "HOME=/tmp PATH=\$PATH:/rust/bin ci/run.sh $target"
}
if [ -z "$1" ]; then
for d in `ls ci/docker/`; do
run $d
done
else
run $1
fi