mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-05 23:49:50 +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
9 lines
202 B
Docker
9 lines
202 B
Docker
ARG IMAGE=ubuntu:20.04
|
|
FROM $IMAGE
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc clang libc6-dev ca-certificates
|
|
|
|
ENV CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=true
|