about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-05-29 18:06:43 +0000
committerTrevor Gross <tmgross@umich.edu>2025-05-29 19:56:59 +0000
commit9f84e9904fd2be7e6b2c339b16ac9c2e5da8778b (patch)
treedd62ffe17a17557b2eb8e6e2b48d20237f7668b0
parent3464b4b231e3e4a09e102696228fe950eb1672e5 (diff)
downloadrust-9f84e9904fd2be7e6b2c339b16ac9c2e5da8778b.tar.gz
rust-9f84e9904fd2be7e6b2c339b16ac9c2e5da8778b.zip
Increase the benchmark rustc version to 2025-05-28
We may soon want to use some new nightly features in `compiler-builtins`
and `libm`, specifically `cfg_target_has_reliable_f16_f128` which was
added in the past few weeks. This will mean we need a newer toolchain
for benchmarks to continue building.

Bump to the current latest nightly so we are not blocked on this down
the line.
-rw-r--r--library/compiler-builtins/.github/workflows/main.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/compiler-builtins/.github/workflows/main.yaml b/library/compiler-builtins/.github/workflows/main.yaml
index de433d8c74d..8e89cb47292 100644
--- a/library/compiler-builtins/.github/workflows/main.yaml
+++ b/library/compiler-builtins/.github/workflows/main.yaml
@@ -13,7 +13,7 @@ env:
   RUSTDOCFLAGS: -Dwarnings
   RUSTFLAGS: -Dwarnings
   RUST_BACKTRACE: full
-  BENCHMARK_RUSTC: nightly-2025-01-16 # Pin the toolchain for reproducable results
+  BENCHMARK_RUSTC: nightly-2025-05-28 # Pin the toolchain for reproducable results
 
 jobs:
   # Determine which tests should be run based on changed files.