Skip to content

Commit

Permalink
Fix CI issue for windows/clang
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Apr 20, 2024
1 parent a59efd0 commit 9aa4414
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -624,15 +624,19 @@ jobs:
fail-fast: false
matrix:
include:
- { sys: mingw64 }
- { sys: mingw32 }
- { sys: ucrt64 }
- { sys: clang64 }
- { sys: mingw64, cc: gcc, cxx: g++ }
- { sys: mingw32, cc: gcc, cxx: g++ }
- { sys: ucrt64, cc: gcc, cxx: g++ }
- { sys: clang64, cc: clang, cxx: clang++ }

defaults:
run:
shell: msys2 {0}

env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}

steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
Expand All @@ -654,7 +658,7 @@ jobs:
bake/bake setup
- name: build flecs
run: bake/bake --strict
run: bake/bake --strict --trace

- name: test core
run: bake/bake run test/core -- -j 8
Expand Down

0 comments on commit 9aa4414

Please sign in to comment.