From b3c5a8db8067b0331bd48ac2f49b76d9a48af624 Mon Sep 17 00:00:00 2001 From: Nicolas Luck Date: Fri, 9 Feb 2024 13:14:06 +0100 Subject: [PATCH] Use stable Rust for style/report and deactivate nightly x86_64 target in CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e35ce825..2fac2a42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Rust uses: ./.github/actions/setup-rust with: - rust-version: nightly + rust-version: stable targets: x86_64-unknown-linux-gnu components: clippy, rustfmt cache-context: style @@ -48,7 +48,7 @@ jobs: # rust versions - { os: ubuntu-22.04, rust-version: "1.70", target: 'x86_64-unknown-linux-gnu'} - { os: ubuntu-22.04, rust-version: beta, target: 'x86_64-unknown-linux-gnu'} - - { os: ubuntu-22.04, rust-version: nightly, target: 'x86_64-unknown-linux-gnu'} + # - { os: ubuntu-22.04, rust-version: nightly, target: 'x86_64-unknown-linux-gnu'} defaults: run: shell: bash @@ -138,7 +138,7 @@ jobs: - name: Setup Rust uses: ./.github/actions/setup-rust with: - rust-version: nightly + rust-version: stable targets: x86_64-unknown-linux-gnu cache-context: report - run: | -- 2.54.0