Skip to content

Commit 37c06fd

Browse files
authored
Fix Rust toolchain used for builds (#7738)
Release builds previously accidentally used the latest stable rather than the CI-fixed MSRV+2 due to a configuration bug.
1 parent b583c54 commit 37c06fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build-build-matrix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const builds = [];
5555
for (let build of array) {
5656
// Perform a "deep clone" roundtripping through JSON for a copy of the build
5757
// that's normal
58-
build.rust = 'stable';
58+
build.rust = 'default';
5959
builds.push(JSON.parse(JSON.stringify(build)));
6060

6161
// Next generate a "min" build and add it to the builds list. Min builds

0 commit comments

Comments
 (0)