Allow using the `rust-lang/rust:nightly` docker image to run tests in cases where the host rust and cargo cannot be used, such as non-linux hosts.
14 lines
444 B
Docker
14 lines
444 B
Docker
ARG IMAGE=ubuntu:18.04
|
|
FROM $IMAGE
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev ca-certificates \
|
|
gcc-mips-linux-gnu libc6-dev-mips-cross \
|
|
binfmt-support qemu-user-static qemu-system-mips
|
|
|
|
ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
|
|
CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER=qemu-mips-static \
|
|
QEMU_LD_PREFIX=/usr/mips-linux-gnu \
|
|
RUST_TEST_THREADS=1
|