Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 217a280

Browse files
committed
Use fixed nightly Rust version in CI.
Some of the CI tests use nightly Rust, which no longer works due to a regression: la10736/rstest#169 We are going to use one of the latest nightly versions that works while keeping an eye on rust-lang/rust#104815
1 parent 222634b commit 217a280

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- { rust: stable, target: i686-pc-windows-msvc, os: windows-latest }
6060
- { rust: beta, target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
6161
- {
62-
rust: nightly,
62+
rust: nightly-2022-11-10,
6363
target: x86_64-unknown-linux-gnu,
6464
os: ubuntu-latest,
6565
}
@@ -195,7 +195,7 @@ jobs:
195195
uses: actions-rs/toolchain@v1
196196
with:
197197
profile: minimal
198-
toolchain: nightly
198+
toolchain: nightly-2022-11-10
199199
target: ${{ matrix.target }}
200200
components: rust-src
201201
default: true
@@ -243,7 +243,7 @@ jobs:
243243
with:
244244
profile: minimal
245245
# Run nightly clippy, which often finds additional issues.
246-
toolchain: nightly
246+
toolchain: nightly-2022-11-10
247247
components: clippy
248248
default: true
249249

@@ -272,7 +272,7 @@ jobs:
272272
profile: minimal
273273
# We use unstable rustfmt features: `wrap_comments` and
274274
# `format_code_in_doc_comments`.
275-
toolchain: nightly
275+
toolchain: nightly-2022-11-10
276276
components: rustfmt
277277
default: true
278278

@@ -324,7 +324,7 @@ jobs:
324324
uses: actions-rs/toolchain@v1
325325
with:
326326
profile: minimal
327-
toolchain: nightly
327+
toolchain: nightly-2022-11-10
328328
default: true
329329

330330
- name: Restore cache

0 commit comments

Comments
 (0)