Skip to content

Commit

Permalink
Merge pull request #216 from tcbrindle/pr/appleclang_ci
Browse files Browse the repository at this point in the history
Add AppleClang to CI tests
  • Loading branch information
tcbrindle authored Nov 5, 2024
2 parents b07090f + a01f41c commit 46cb9a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,24 @@ on:

jobs:
build:
runs-on: macos-latest
runs-on: macos-15
strategy:
matrix:
compiler: [GCC-13, LLVM-Clang-16, LLVM-Clang-17, LLVM-Clang-18, LLVM-Clang-19]
compiler: [AppleClang, LLVM-Clang-16, LLVM-Clang-17, LLVM-Clang-18, LLVM-Clang-19]
test_with: [Headers, Module]
build_type: [Debug, Release]

exclude:
- compiler: GCC-13
# test_with: Module
- compiler: AppleClang
test_with: Module
- compiler: LLVM-Clang-16
test_with: Module

include:
# - compiler: GCC-13
# cxx: g++-13
# install: |
# brew update
# brew install gcc@13 ninja
- compiler: AppleClang
cxx: clang++
install: |
brew install ninja
- compiler: LLVM-Clang-16
cxx: $(brew --prefix llvm@16)/bin/clang++
install: |
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ Flux requires a recent compiler with good support for the C++20 standard. It is
* GCC 11.3 and newer
* LLVM Clang 16 and newer
* MSVC 2022

AppleClang is currently not usable due to missing C++20 support.
* AppleClang/Xcode 16

## The Flux difference ##

Expand Down

0 comments on commit 46cb9a5

Please sign in to comment.