From 0f22e36844eb3d3fe86a9d9687ab03ff4669cab9 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 7 Sep 2022 10:02:07 +0200 Subject: [PATCH] Work around rustc bug in CI --- .github/workflows/rust.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9918ed7..a7d771f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,10 +30,14 @@ jobs: with: command: build args: --all-features --all-targets + env: + CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518 - uses: actions-rs/cargo@v1 with: command: test args: --all-features + env: + CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518 lint: runs-on: ubuntu-latest @@ -54,6 +58,8 @@ jobs: with: command: clippy args: --workspace --all-targets --all-features -- -D warnings + env: + CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518 audit: runs-on: ubuntu-latest