Bump to latest rustc-perf

This removes a dependency on ntapi 0.3.x which failed to compiled with
latest beta.
rust-lang/rustc-perf@93dc60d995 removed
that dependency in the upstream rustc-perf.
This commit is contained in:
Mark Rousskov 2023-03-15 09:05:25 -04:00
parent bb8a0ffa23
commit df0be2d65e
2 changed files with 4 additions and 4 deletions

View File

@ -54,8 +54,8 @@ COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
RUN ./build-clang.sh
ENV CC=clang CXX=clang++
# rustc-perf version from 2022-07-22
ENV PERF_COMMIT 3c253134664fdcba862c539d37f0de18557a9a4c
# rustc-perf version from 2023-03-15
ENV PERF_COMMIT 9dfaa35193154b690922347ee1141a06ec87a199
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 && \

View File

@ -175,8 +175,8 @@ class WindowsPipeline(Pipeline):
return super().rustc_stage_2().with_suffix(".exe")
def build_rustc_perf(self):
# rustc-perf version from 2022-07-22
perf_commit = "3c253134664fdcba862c539d37f0de18557a9a4c"
# rustc-perf version from 2023-03-15
perf_commit = "9dfaa35193154b690922347ee1141a06ec87a199"
rustc_perf_zip_path = self.opt_artifacts() / "perf.zip"
def download_rustc_perf():