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

Commit 0726cde

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 ad095a9 commit 0726cde

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
}
@@ -189,7 +189,7 @@ jobs:
189189
uses: actions-rs/toolchain@v1
190190
with:
191191
profile: minimal
192-
toolchain: nightly
192+
toolchain: nightly-2022-11-10
193193
target: ${{ matrix.target }}
194194
components: rust-src
195195
default: true
@@ -237,7 +237,7 @@ jobs:
237237
with:
238238
profile: minimal
239239
# Run nightly clippy, which often finds additional issues.
240-
toolchain: nightly
240+
toolchain: nightly-2022-11-10
241241
components: clippy
242242
default: true
243243

@@ -266,7 +266,7 @@ jobs:
266266
profile: minimal
267267
# We use unstable rustfmt features: `wrap_comments` and
268268
# `format_code_in_doc_comments`.
269-
toolchain: nightly
269+
toolchain: nightly-2022-11-10
270270
components: rustfmt
271271
default: true
272272

@@ -318,7 +318,7 @@ jobs:
318318
uses: actions-rs/toolchain@v1
319319
with:
320320
profile: minimal
321-
toolchain: nightly
321+
toolchain: nightly-2022-11-10
322322
default: true
323323

324324
- name: Restore cache

0 commit comments

Comments
 (0)