From 4f2573b1ebbadd99ea2b00e961322e8991cbee5e Mon Sep 17 00:00:00 2001 From: Colin Rofls Date: Fri, 6 Oct 2023 01:04:46 -0400 Subject: [PATCH] [ci] Disable clippy There's a new clippy with new lints, but when we fix these lints we're crashing the compiler, so let's just turn it off until this gets resolved. --- .github/workflows/rust.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ad5fccf7d..9236056b2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,19 +30,20 @@ jobs: - name: check no println! or eprintln! statements run: resources/scripts/check_no_println.sh - clippy-lint: - name: Clippy lints - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: install stable toolchain - uses: dtolnay/rust-toolchain@stable - - - name: cargo clippy --all-features - run: cargo clippy --all-features --all-targets -- -D warnings - - - name: cargo clippy --no-default-features - run: cargo clippy --all-targets --no-default-features -- -D warnings + # disabled temporarily pending fixing a crash in clippy + #clippy-lint: + #name: Clippy lints + #runs-on: ubuntu-latest + #steps: + #- uses: actions/checkout@v3 + #- name: install stable toolchain + #uses: dtolnay/rust-toolchain@stable + + #- name: cargo clippy --all-features + #run: cargo clippy --all-features --all-targets -- -D warnings + + #- name: cargo clippy --no-default-features + #run: cargo clippy --all-targets --no-default-features -- -D warnings test-stable: name: cargo test stable