Mirror the rustc-perf source
This avoids issues with the GitHub /archive/ links which can be somewhat unreliable and are currently causing CI issues.
This commit is contained in:
parent
bf1e3f31f9
commit
fe6c863f0b
@ -60,7 +60,7 @@ ENV CC=clang CXX=clang++
|
|||||||
# rustc-perf version from 2023-05-30
|
# rustc-perf version from 2023-05-30
|
||||||
# Should also be changed in the opt-dist tool for other environments.
|
# Should also be changed in the opt-dist tool for other environments.
|
||||||
ENV PERF_COMMIT 8b2ac3042e1ff2c0074455a0a3618adef97156b1
|
ENV PERF_COMMIT 8b2ac3042e1ff2c0074455a0a3618adef97156b1
|
||||||
RUN curl -LS -o perf.zip https://github.com/rust-lang/rustc-perf/archive/$PERF_COMMIT.zip && \
|
RUN curl -LS -o perf.zip https://ci-mirrors.rust-lang.org/rustc/rustc-perf-$PERF_COMMIT.zip && \
|
||||||
unzip perf.zip && \
|
unzip perf.zip && \
|
||||||
mv rustc-perf-$PERF_COMMIT rustc-perf && \
|
mv rustc-perf-$PERF_COMMIT rustc-perf && \
|
||||||
rm perf.zip
|
rm perf.zip
|
||||||
|
@ -42,7 +42,7 @@ fn prepare_rustc_perf(&self) -> anyhow::Result<()> {
|
|||||||
// rustc-perf version from 2023-05-30
|
// rustc-perf version from 2023-05-30
|
||||||
const PERF_COMMIT: &str = "8b2ac3042e1ff2c0074455a0a3618adef97156b1";
|
const PERF_COMMIT: &str = "8b2ac3042e1ff2c0074455a0a3618adef97156b1";
|
||||||
|
|
||||||
let url = format!("https://github.com/rust-lang/rustc-perf/archive/{PERF_COMMIT}.zip");
|
let url = format!("https://ci-mirrors.rust-lang.org/rustc/rustc-perf-{PERF_COMMIT}.zip");
|
||||||
let response = reqwest::blocking::get(url)?.error_for_status()?.bytes()?.to_vec();
|
let response = reqwest::blocking::get(url)?.error_for_status()?.bytes()?.to_vec();
|
||||||
|
|
||||||
let mut archive = ZipArchive::new(Cursor::new(response))?;
|
let mut archive = ZipArchive::new(Cursor::new(response))?;
|
||||||
|
Loading…
Reference in New Issue
Block a user