Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Jun 18, 2024
1 parent c585d03 commit 92f2c4d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/cupcake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- platform: ubuntu
runner: ubuntu-24.04
- platform: macos
runner: macos-14-xlarge
runner: macos-14
- platform: ubuntu
compiler: gcc
profile:
Expand All @@ -77,9 +77,9 @@ jobs:
compiler: clang
profile:
compiler: clang
version: 15
cc: /usr/bin/clang-15
cxx: /usr/bin/clang++-15
version: 16
cc: /usr/bin/clang-16
cxx: /usr/bin/clang++-16
- platform: macos
compiler: gcc
profile:
Expand Down Expand Up @@ -114,6 +114,12 @@ jobs:
- name: install Ninja on macOS
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'macos')
run: brew install ninja
- name: check macOS
if: startsWith(matrix.platform, 'macos')
run: |
brew --prefix llvm@15
ls $(brew --prefix llvm@15)
ls $(brew --prefix llvm@15)/bin
- name: check compiler
run: |
${{ matrix.profile.cc }} --version
Expand Down

0 comments on commit 92f2c4d

Please sign in to comment.