Skip to content

Commit 913ceae

Browse files
committed
Auto merge of #117062 - Kobzol:update-rustc-perf, r=Mark-Simulacrum
Update rustc-perf version Needed to unblock #116033. The commit first needs to be uploaded to our mirrors. r? `@Mark-Simulacrum`
2 parents 54b0434 + 41dfebb commit 913ceae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
5757
RUN ./build-clang.sh
5858
ENV CC=clang CXX=clang++
5959

60-
# rustc-perf version from 2023-05-30
60+
# rustc-perf version from 2023-10-22
6161
# Should also be changed in the opt-dist tool for other environments.
62-
ENV PERF_COMMIT 8b2ac3042e1ff2c0074455a0a3618adef97156b1
62+
ENV PERF_COMMIT 4f313add609f43e928e98132358e8426ed3969ae
6363
RUN curl -LS -o perf.zip https://ci-mirrors.rust-lang.org/rustc/rustc-perf-$PERF_COMMIT.zip && \
6464
unzip perf.zip && \
6565
mv rustc-perf-$PERF_COMMIT rustc-perf && \

src/tools/opt-dist/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ fn download_rustc_perf(env: &Environment) -> anyhow::Result<()> {
408408

409409
// FIXME: add some mechanism for synchronization of this commit SHA with
410410
// Linux (which builds rustc-perf in a Dockerfile)
411-
// rustc-perf version from 2023-05-30
412-
const PERF_COMMIT: &str = "8b2ac3042e1ff2c0074455a0a3618adef97156b1";
411+
// rustc-perf version from 2023-10-22
412+
const PERF_COMMIT: &str = "4f313add609f43e928e98132358e8426ed3969ae";
413413

414414
let url = format!("https://ci-mirrors.rust-lang.org/rustc/rustc-perf-{PERF_COMMIT}.zip");
415415
let client = reqwest::blocking::Client::builder()

0 commit comments

Comments
 (0)