From 9023b9be3156ab28647b996ae624629e2f586e1e Mon Sep 17 00:00:00 2001 From: OlivierHecart Date: Tue, 6 Jun 2023 10:05:51 +0200 Subject: [PATCH] Remove binary building in ci.yml --- .github/workflows/ci.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19946d2710..e155cbea83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,36 +83,6 @@ jobs: *windows*) echo "RUSTFLAGS=-Clink-arg=/DEBUG:NONE" >> $GITHUB_ENV ;; esac - - name: Build lib - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --lib --features shared-memory --verbose - - - name: Build bins - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --bins --features shared-memory --verbose - - - name: Build examples - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --examples --features shared-memory --verbose - - - name: Build tests - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --tests --features shared-memory --verbose - - - name: Build benches - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --benches --features shared-memory --verbose - - name: Install nextest run: cargo install cargo-nextest --locked