Skip to content

Commit

Permalink
chore: comment out windows tests in CI for now (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
maraisr authored Dec 17, 2024
1 parent 30d7387 commit d5db8f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
uses: Swatinem/rust-cache@v2
with:
shared-key: release-${{ matrix.target }}
- name: Test
- if: matrix.os != 'windows-latest'
run: cargo test --all-features
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc

# Because quirks, we won't test on Windows for now. But we still should see it build
- if: matrix.os == 'windows-latest'
run: cargo build

0 comments on commit d5db8f4

Please sign in to comment.