Skip to content

Commit

Permalink
Don't run all tests on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch committed Oct 11, 2024
1 parent 5ad28f6 commit 5cece70
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ jobs:
- name: Test 64-bit debug
shell: bash
if: env.DO_MORE_TESTS == 'true'
# TODO(florian): fix Windows.
if: env.DO_MORE_TESTS == 'true' && runner.os != 'Windows'
run: |
make BUILD=build-debug BUILD_TYPE=Debug test
Expand All @@ -278,7 +279,8 @@ jobs:
- name: Test -O2 with asserts
shell: bash
if: env.DO_MORE_TESTS == 'true'
# TODO(florian): fix Windows.
if: env.DO_MORE_TESTS == 'true' && runner.os != 'Windows'
run: |
TOIT_OPTIMIZATION_OVERRIDE=2 TOIT_ASSERT_OVERRIDE=1 make HOST=host-O2 TOOLCHAIN=host test
Expand Down

0 comments on commit 5cece70

Please sign in to comment.