Skip to content

Commit f457e5b

Browse files
committed
Pin the rustc version used to compile collector
Just to avoid potential surprises with the collector being recompiled with a different (unstable) rustc every day.
1 parent 2477025 commit f457e5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

collector/collect.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ while : ; do
1616

1717
# Make sure we have a recent build, so that we can successfully build
1818
# the collector.
19-
rustup update
20-
cargo +nightly build --release -p collector
19+
rustup update 1.81.0
20+
cargo +1.81.0 build --release -p collector
2121

2222
target/release/collector bench_next $SITE_URL --self-profile --bench-rustc --db $DATABASE
2323
STATUS=$?

0 commit comments

Comments
 (0)