Skip to content

Commit

Permalink
CI: Disable Windows, MacOS Testing
Browse files Browse the repository at this point in the history
Windows CI runners appear to be very slow wrt. the time limits we've set for many of the tests, so fail for tests involving longer files. At the same time, MacOS tests aren't likely to add much value over Linux.

This commit disables *test* runners for these environments to remove a lot of commit/PR noise. Builds are still run on these platforms.
  • Loading branch information
FelixMcFelix committed Nov 20, 2023
1 parent 50fa17f commit 2de071f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ jobs:
toolchain: nightly
- name: macOS
os: macOS-latest
dont-test: true
- name: Windows
os: windows-latest
dont-test: true
- name: driver only
features: driver rustls
dont-test: true
Expand Down Expand Up @@ -108,7 +110,7 @@ jobs:
run: cargo build --features full-doc

- name: Test all features
if: matrix.features == ''
if: ${{ !matrix.dont-test && matrix.features == '' }}
run: cargo test --features full-doc

- name: Build some features
Expand Down

0 comments on commit 2de071f

Please sign in to comment.