diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-11-02 11:57:40 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-05-31 10:24:17 +0000 |
| commit | 05eae0823373415bb25063e3d0ccd99df52079b0 (patch) | |
| tree | 271b91c6484039fd5305700b4e19a7e1d7bde995 /src/ci | |
| parent | 578bcbc2b42191556c4438b80ba37fafa4193e82 (diff) | |
| download | rust-05eae0823373415bb25063e3d0ccd99df52079b0.tar.gz rust-05eae0823373415bb25063e3d0ccd99df52079b0.zip | |
Remove const eval limit and implement an exponential backoff lint instead
Diffstat (limited to 'src/ci')
| -rw-r--r-- | src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile | 2 | ||||
| -rw-r--r-- | src/ci/stage-build.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile index 04fdb15f5ac..c2fd2e3a91a 100644 --- a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile +++ b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile @@ -55,7 +55,7 @@ RUN ./build-clang.sh ENV CC=clang CXX=clang++ # rustc-perf version from 2023-03-15 -ENV PERF_COMMIT 9dfaa35193154b690922347ee1141a06ec87a199 +ENV PERF_COMMIT 8b2ac3042e1ff2c0074455a0a3618adef97156b1 RUN curl -LS -o perf.zip https://github.com/rust-lang/rustc-perf/archive/$PERF_COMMIT.zip && \ unzip perf.zip && \ mv rustc-perf-$PERF_COMMIT rustc-perf && \ diff --git a/src/ci/stage-build.py b/src/ci/stage-build.py index 8d03d3759bf..066d3a198f2 100644 --- a/src/ci/stage-build.py +++ b/src/ci/stage-build.py @@ -175,7 +175,7 @@ class WindowsPipeline(Pipeline): def build_rustc_perf(self): # rustc-perf version from 2023-03-15 - perf_commit = "9dfaa35193154b690922347ee1141a06ec87a199" + perf_commit = "8b2ac3042e1ff2c0074455a0a3618adef97156b1" rustc_perf_zip_path = self.opt_artifacts() / "perf.zip" def download_rustc_perf(): |
