Skip to content

Commit

Permalink
CI: Add macos build target
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-droid authored Dec 25, 2023
1 parent a6f0ef8 commit 96f3ce0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
include:
Expand All @@ -41,13 +41,21 @@ jobs:
c_compiler: clang
cpp_compiler: clang++
cpp_flags: -Werror
- os: macos-latest
c_compiler: clang
cpp_compiler: clang++
cpp_flags: -Werror
exclude:
- os: windows-latest
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: ubuntu-latest
c_compiler: cl
- os: macos-latest
c_compiler: cl
- os: macos-latest
c_compiler: gcc

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 96f3ce0

Please sign in to comment.