File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ci/docker/host-x86_64/dist-x86_64-linux
tools/opt-dist/src/environment Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ ENV CC=clang CXX=clang++
6060# rustc-perf version from 2023-05-30
6161# Should also be changed in the opt-dist tool for other environments.
6262ENV PERF_COMMIT 8b2ac3042e1ff2c0074455a0a3618adef97156b1
63- RUN curl -LS -o perf.zip https://github.com/ rust-lang/rustc-perf/archive/ $PERF_COMMIT.zip && \
63+ 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 && \
6666 rm perf.zip
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ impl Environment for WindowsEnvironment {
4242 // rustc-perf version from 2023-05-30
4343 const PERF_COMMIT : & str = "8b2ac3042e1ff2c0074455a0a3618adef97156b1" ;
4444
45- let url = format ! ( "https://github.com/ rust-lang/rustc-perf/archive/ {PERF_COMMIT}.zip" ) ;
45+ let url = format ! ( "https://ci-mirrors. rust-lang.org /rustc/rustc -perf- {PERF_COMMIT}.zip" ) ;
4646 let response = reqwest:: blocking:: get ( url) ?. error_for_status ( ) ?. bytes ( ) ?. to_vec ( ) ;
4747
4848 let mut archive = ZipArchive :: new ( Cursor :: new ( response) ) ?;
You can’t perform that action at this time.
0 commit comments