Skip to content

Commit

Permalink
add macos clang target to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Jan 26, 2025
1 parent 621b785 commit f32a114
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
os: macos-latest
compiler: gcc-13
compilercxx: g++-13
- name: MacOS ARM Clang
os: macos-latest
compiler: clang
compilercxx: clang++

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/cmake-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
- name: Ubuntu Clang
os: ubuntu-24.04
compiler: clang
compilercxx: clang++
cflags: "-fsanitize=address,leak,undefined"
cxxflags: "-fsanitize=address,leak,undefined"
compilercxx: clang++
- name: Windows MSVC
os: windows-latest
compiler: msvc
Expand All @@ -45,6 +45,12 @@ jobs:
os: macos-latest
compiler: gcc-13
compilercxx: g++-13
cflags: ""
cxxflags: ""
- name: MacOS ARM Clang
os: macos-latest
compiler: clang
compilercxx: clang++
cflags: "-fsanitize=address,leak,undefined"
cxxflags: "-fsanitize=address,leak,undefined"

Expand Down

0 comments on commit f32a114

Please sign in to comment.