diff options
| author | Jieyou Xu <jieyouxu@outlook.com> | 2024-11-18 02:46:41 +0800 |
|---|---|---|
| committer | Jieyou Xu <jieyouxu@outlook.com> | 2024-11-23 23:58:44 +0800 |
| commit | f7f8ad92a1a109229264f1a160d4b8cac3fe395b (patch) | |
| tree | cbf343b9e779850dd9b83286bd88010ecda1be62 | |
| parent | dab61db1acb9db630b7a752b714bc9af4621c8dd (diff) | |
| download | rust-f7f8ad92a1a109229264f1a160d4b8cac3fe395b.tar.gz rust-f7f8ad92a1a109229264f1a160d4b8cac3fe395b.zip | |
ci: don't force CI rustc for `x86_64-gnu-tools`
CI alt rustc builds do not have rustc debug assertions currently.
| -rw-r--r-- | src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile b/src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile index 17fc1a57492..2a09cd54b13 100644 --- a/src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile +++ b/src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile @@ -84,7 +84,10 @@ ENV RUST_CONFIGURE_ARGS \ --enable-new-symbol-mangling ENV HOST_TARGET x86_64-unknown-linux-gnu -ENV FORCE_CI_RUSTC 1 + +# FIXME(#133381): currently rustc alt builds do *not* have rustc debug +# assertions enabled! Therefore, we cannot force download CI rustc. +#ENV FORCE_CI_RUSTC 1 COPY host-x86_64/dist-x86_64-linux/shared.sh /scripts/ COPY host-x86_64/dist-x86_64-linux/build-gccjit.sh /scripts/ |
