ci: Update version of Rust nightly

This commit is contained in:
Kévin Commaille 2024-05-12 15:45:06 +02:00 committed by Kévin Commaille
parent 8699c174a9
commit bbc0fe875f
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
# Keep in sync with version in `rust-toolchain.toml` and `xtask/src/ci.rs` # Keep in sync with version in `rust-toolchain.toml` and `xtask/src/ci.rs`
NIGHTLY: nightly-2024-02-14 NIGHTLY: nightly-2024-05-09
on: on:
push: push:

View File

@ -1,4 +1,4 @@
[toolchain] [toolchain]
# Keep in sync with version in `xtask/src/ci.rs` and `.github/workflows/ci.yml` # Keep in sync with version in `xtask/src/ci.rs` and `.github/workflows/ci.yml`
channel = "nightly-2024-02-14" channel = "nightly-2024-05-09"
components = ["rustfmt", "clippy"] components = ["rustfmt", "clippy"]

View File

@ -238,7 +238,7 @@ impl CiTask {
cmd!( cmd!(
" "
rustup run {NIGHTLY} cargo check rustup run {NIGHTLY} cargo check
--workspace --all-features -Z unstable-options -Z check-cfg --workspace --all-features -Z unstable-options
" "
) )
.env( .env(

View File

@ -15,7 +15,7 @@ use serde::Deserialize;
use serde_json::from_str as from_json_str; use serde_json::from_str as from_json_str;
// Keep in sync with version in `rust-toolchain.toml` and `.github/workflows/ci.yml` // Keep in sync with version in `rust-toolchain.toml` and `.github/workflows/ci.yml`
const NIGHTLY: &str = "nightly-2024-02-14"; const NIGHTLY: &str = "nightly-2024-05-09";
mod cargo; mod cargo;
mod ci; mod ci;