Skip to content

Commit 74161e0

Browse files
committed
Add apple clang compiler to CI test
1 parent 80ce062 commit 74161e0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/macos.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929

3030
matrix:
3131
sanitizer: [debug, release]
32-
# TODO: compiler: [g++-14, clang++-19]
33-
compiler: [clang++-18]
32+
# TODO: compiler: [g++, clang++-19]
33+
compiler: [g++, clang++-18]
3434

3535
steps:
3636
- uses: actions/checkout@v4
@@ -39,11 +39,15 @@ jobs:
3939
# if: startsWith(matrix.compiler, 'clang')
4040
uses: aminya/setup-cpp@v1
4141
with:
42-
# compiler: llvm-19
42+
# TODO: compiler: llvm-19
4343
# clangtidy: true
4444
# cmake: true
4545
ninja: true
4646

4747
- name: macos ${{ matrix.compiler }} ${{ matrix.sanitizer }}
4848
if: startsWith(matrix.compiler, 'clang')
4949
run: CXX=$(brew --prefix llvm@18)/bin/clang++ make ${{ matrix.sanitizer }}
50+
51+
- name: macos ${{ matrix.compiler }} ${{ matrix.sanitizer }}
52+
if: startsWith(matrix.compiler, 'g++')
53+
run: CXX=${{ matrix.compiler }} make ${{ matrix.sanitizer }}

0 commit comments

Comments
 (0)