File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -108,9 +108,8 @@ jobs:
108
108
- name : Checkout sources
109
109
uses : actions/checkout@v3
110
110
111
- # TODO: for now our latest release (0.19.1) requires nightly.
112
- - name : Set nightly toolchain
113
- run : cp .github/workflows/nightly_toolchain.toml rust-toolchain.toml
111
+ - name : Set MSRV toolchain
112
+ run : cp .github/workflows/msrv_toolchain.toml rust-toolchain.toml
114
113
115
114
- name : Build
116
115
run : cargo xtask test-latest-release
@@ -129,13 +128,13 @@ jobs:
129
128
run : cargo xtask run --target x86_64 --ci
130
129
timeout-minutes : 6
131
130
132
- # Run the build with our current nightly MSRV (specified in
131
+ # Run the build with our current stable MSRV (specified in
133
132
# ./msrv_toolchain.toml). This serves to check that we don't
134
133
# accidentally start relying on a new feature without intending
135
134
# to. Having a test for this makes it easier for us to be intentional
136
135
# about making changes that require a newer version.
137
136
build_msrv :
138
- name : Check that the build works on our nightly MSRV
137
+ name : Check that the build works on our stable MSRV
139
138
runs-on : ubuntu-latest
140
139
steps :
141
140
- name : Checkout sources
Original file line number Diff line number Diff line change @@ -207,9 +207,9 @@ fn run_host_tests(test_opt: &TestOpt) -> Result<()> {
207
207
/// The `build` action also builds the template app, but due to the
208
208
/// `patch.crates-io` of the top-level Cargo.toml the app is built using
209
209
/// the current versions of the libraries in this repo. To give warning
210
- /// when the latest crates.io releases of the libraries are broken (due
211
- /// to changes in the nightly toolchain), this action copies the
212
- /// template to a temporary directory and builds it in isolation.
210
+ /// when the latest crates.io releases of the libraries are broken, this
211
+ /// action copies the template to a temporary directory and builds it in
212
+ /// isolation.
213
213
///
214
214
/// The build command is also checked against the contents of
215
215
/// `building.md` to ensure that the doc correctly describes how to
You can’t perform that action at this time.
0 commit comments