mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-23 13:28:48 +00:00

Apply a handful of changes to reduce the diff between the two: * Cancel running jobs on new pushes * Enable log color and backtraces * Add timeouts * Specify CI runner versions * Add an armv7 job * Replace the name NO_STD with BUILD_ONLY * Update the extension to the canonical .yaml * Set AR_ and CC_ environments in docker * Install requirements to build MPFR
17 lines
594 B
Docker
17 lines
594 B
Docker
ARG IMAGE=ubuntu:24.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 TOOLCHAIN_PREFIX=mips-linux-gnu-
|
|
ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER="$TOOLCHAIN_PREFIX"gcc \
|
|
CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER=qemu-mips-static \
|
|
AR_mips_unknown_linux_gnu="$TOOLCHAIN_PREFIX"ar \
|
|
CC_mips_unknown_linux_gnu="$TOOLCHAIN_PREFIX"gcc \
|
|
QEMU_LD_PREFIX=/usr/mips-linux-gnu \
|
|
RUST_TEST_THREADS=1
|