From e435183abc8d5a706de01e0f1b615811d17c7bac Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Thu, 12 Oct 2023 17:23:52 -0700 Subject: [PATCH] Remove release builds and runs from additional builds --- .github/workflows/check.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 669c9f1f2..64f9b7ac9 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -125,21 +125,12 @@ jobs: target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }} - - name: Release Build - run: cargo build --release - - name: Build benchmarks run: cargo build --benches --no-default-features --features "enable-benches descriptive-gate" - - name: Build concurrency tests - run: cargo build --release --features shuttle - - name: Build concurrency tests (debug mode) run: cargo build --features shuttle - - name: Run concurrency tests - run: cargo test --release --features shuttle - - name: Run IPA bench run: cargo bench --bench oneshot_ipa --no-default-features --features "enable-benches descriptive-gate"