From 1b1f74613b474e0d8789ed12737b8e69ffcb9c64 Mon Sep 17 00:00:00 2001 From: FujiApple Date: Sat, 21 Oct 2023 11:01:08 +0800 Subject: [PATCH] build: remove netbsd ci workaround --- .github/workflows/rust.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 011fba6..c706374 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -54,21 +54,11 @@ jobs: echo "target dir is: ${{ env.TARGET_DIR }}" - name: cargo test - if: ${{ !startsWith(matrix.build, 'netbsd') }} run: ${{ env.CARGO }} test --verbose ${{ env.TARGET_FLAGS }} - name: cargo test (without chrono) - if: ${{ !startsWith(matrix.build, 'netbsd') }} run: ${{ env.CARGO }} test --verbose --no-default-features --features coinit_apartmentthreaded ${{ env.TARGET_FLAGS }} - - name: cargo build - if: ${{ startsWith(matrix.build, 'netbsd') }} - run: ${{ env.CARGO }} build --verbose ${{ env.TARGET_FLAGS }} - - - name: cargo build (without chrono) - if: ${{ startsWith(matrix.build, 'netbsd') }} - run: ${{ env.CARGO }} build --verbose --no-default-features --features coinit_apartmentthreaded ${{ env.TARGET_FLAGS }} - - name: cargo fmt uses: actions-rs/cargo@v1 with: