43e019dfc4
notable changes in the docker-based testing infrastructure - the docker containers can now modify $CARGO_HOME, to re-use the outer Cargo registry, and the target directory to re-use build artifacts. - the docker containers are removed when their execution finishes because it's no longer necessary to re-start them to inspect them because all the interesting output is in the outer target directory
12 lines
383 B
Docker
12 lines
383 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user-static ca-certificates \
|
|
gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross \
|
|
qemu-system-ppc
|
|
|
|
ENV CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_LINKER=powerpc64le-linux-gnu-gcc \
|
|
QEMU_LD_PREFIX=/usr/powerpc64le-linux-gnu \
|
|
RUST_TEST_THREADS=1
|