Skip to content

Commit df0be2d

Browse files
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@93dc60d removed that dependency in the upstream rustc-perf.
1 parent bb8a0ff commit df0be2d

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
@@ -54,8 +54,8 @@ COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
5454
RUN ./build-clang.sh
5555
ENV CC=clang CXX=clang++
5656

57-
# rustc-perf version from 2022-07-22
58-
ENV PERF_COMMIT 3c253134664fdcba862c539d37f0de18557a9a4c
57+
# rustc-perf version from 2023-03-15
58+
ENV PERF_COMMIT 9dfaa35193154b690922347ee1141a06ec87a199
5959
RUN curl -LS -o perf.zip https://github.com/rust-lang/rustc-perf/archive/$PERF_COMMIT.zip && \
6060
unzip perf.zip && \
6161
mv rustc-perf-$PERF_COMMIT rustc-perf && \

src/ci/stage-build.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def rustc_stage_2(self) -> Path:
175175
return super().rustc_stage_2().with_suffix(".exe")
176176

177177
def build_rustc_perf(self):
178-
# rustc-perf version from 2022-07-22
179-
perf_commit = "3c253134664fdcba862c539d37f0de18557a9a4c"
178+
# rustc-perf version from 2023-03-15
179+
perf_commit = "9dfaa35193154b690922347ee1141a06ec87a199"
180180
rustc_perf_zip_path = self.opt_artifacts() / "perf.zip"
181181

182182
def download_rustc_perf():

0 commit comments

Comments
 (0)