Add macOS runner

This commit is contained in:
Jacob 2024-05-06 00:06:06 +02:00
parent 8689ada650
commit d95fa3ab8b

View file

@ -26,23 +26,30 @@ jobs:
os: [ubuntu-latest, windows-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
cpp_compiler: [g++, clang++, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
- os: macos-latest
c_compiler: clang
cpp_compiler: clang++
exclude:
- os: windows-latest
c_compiler: gcc
cpp_compiler: g++
- os: windows-latest
c_compiler: clang
cpp_compiler: clang++
- os: ubuntu-latest
c_compiler: cl
cpp_compiler: cl
- os: macos-latest
c_compiler: cl
cpp_compiler: cl
steps:
- uses: actions/checkout@v4