Skip to content

Commit

Permalink
Experimenting
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed May 6, 2024
1 parent 016b9ff commit 4bc0cea
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
compiler: gcc
- os: ubuntu-latest
compiler: clang
- os: windows-latest
compiler: msvc
# - os: ubuntu-latest
# compiler: gcc
# - os: ubuntu-latest
# compiler: clang
# - os: windows-latest
# compiler: msvc
- os: macos-latest
compiler: llvm-17
compiler:
# compiler: gcc
# - os: macos-latest
# compiler: clang
Expand Down Expand Up @@ -54,6 +54,11 @@ jobs:
vcpkg: true
cppcheck: false

- name: Install compiler for Macos
if: startsWith(matrix.os, 'macos')
run: |
brew install llvm
- name: Prepare the PATH
run: |
if [[ "${{ runner.os }}" == "Windows" ]]; then
Expand Down

0 comments on commit 4bc0cea

Please sign in to comment.