Remove Macos from github actions workflow

This commit is contained in:
Jordon Brooks 2024-05-17 01:16:16 +01:00
parent 935faff443
commit 5ac5d8b025
Signed by: jordon
GPG key ID: DBD9758CD53E786A

View file

@ -24,7 +24,7 @@ jobs:
# #
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest] # macos-latest
build_type: [Release] build_type: [Release]
c_compiler: [gcc, clang, cl] c_compiler: [gcc, clang, cl]
cpp_compiler: [g++, clang++, cl] cpp_compiler: [g++, clang++, cl]
@ -50,14 +50,14 @@ jobs:
c_compiler: cl c_compiler: cl
- os: ubuntu-latest - os: ubuntu-latest
cpp_compiler: cl cpp_compiler: cl
- os: macos-latest #- os: macos-latest
c_compiler: gcc # c_compiler: gcc
- os: macos-latest #- os: macos-latest
cpp_compiler: g++ # cpp_compiler: g++
- os: macos-latest #- os: macos-latest
c_compiler: cl # c_compiler: cl
- os: macos-latest #- os: macos-latest
cpp_compiler: cl # cpp_compiler: cl
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with: