Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AppleClang to CI tests #216

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading