rust-libc/ci/run-docker.sh

47 lines
1 KiB
Bash
Raw Normal View History

2018-11-19 15:49:56 +01:00
#!/usr/bin/env sh
# Small script to run tests for a target (or all targets) inside all the
# respective docker images.
set -ex
2019-05-28 19:10:23 +02:00
echo "${HOME}"
pwd
run() {
2018-11-19 15:49:56 +01:00
echo "Building docker container for target ${1}"
# use -f so we can use ci/ as build context
2018-11-19 15:49:56 +01:00
docker build -t libc -f "ci/docker/${1}/Dockerfile" ci/
mkdir -p target
if [ -w /dev/kvm ]; then
2018-11-19 15:49:56 +01:00
kvm="--volume /dev/kvm:/dev/kvm"
else
kvm=""
fi
2018-11-19 15:49:56 +01:00
docker run \
--rm \
2019-05-28 19:10:23 +02:00
--user "$(id -u)":"$(id -g)" \
--env LIBC_CI \
--env CARGO_HOME=/cargo \
2019-05-28 19:10:23 +02:00
--env CARGO_TARGET_DIR=/checkout/target \
--volume "$(dirname "$(dirname "$(command -v cargo)")")":/cargo \
2018-11-19 15:49:56 +01:00
--volume "$(rustc --print sysroot)":/rust:ro \
--volume "$(pwd)":/checkout:ro \
--volume "$(pwd)"/target:/checkout/target \
2019-05-28 19:10:23 +02:00
$kvm \
--init \
--workdir /checkout \
libc \
2019-05-28 19:10:23 +02:00
sh -c "HOME=/tmp PATH=\$PATH:/rust/bin exec ci/run.sh ${1}"
}
2018-11-19 15:49:56 +01:00
if [ -z "${1}" ]; then
for d in ci/docker/*; do
run "${d}"
done
else
2018-11-19 15:49:56 +01:00
run "${1}"
fi