Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Remove windows build (no sys/time.h) and add cpp compiler for macOS
  • Loading branch information
jmaack24 authored Nov 5, 2024
1 parent dac4225 commit 486eeae
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,23 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest]
build_type: [Release]
c_compiler: [gcc, 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++
exclude:
- os: windows-latest
c_compiler: gcc
- os: windows-latest
- os: macOS-latest
c_compiler: clang
cpp_compiler: clang++
- os: macOS-latest
c_compiler: gcc
cpp_compiler: g++
exclude:
- os: ubuntu-latest
c_compiler: cl
- os: macOS-latest
Expand Down

0 comments on commit 486eeae

Please sign in to comment.