Skip to content

Commit f6ffd60

Browse files
committed
ci: use the default C compiler on Apple
1 parent 84787b6 commit f6ffd60

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/CI.yml

+8
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,20 @@ jobs:
4646
4747
# Setup compilers and tools
4848
- name: Setup Cpp
49+
if: ${{ !contains(matrix.os, 'macos') }}
4950
uses: aminya/setup-cpp@v1
5051
with:
5152
compiler: ${{ matrix.compiler }}
5253
cmake: true
5354
ninja: true
5455

56+
- name: Setup Cpp
57+
if: ${{ contains(matrix.os, 'macos') }}
58+
uses: aminya/setup-cpp@v1
59+
with:
60+
cmake: true
61+
ninja: true
62+
5563
- name: Setup D
5664
uses: dlang-community/setup-dlang@v1
5765
with:

0 commit comments

Comments
 (0)