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 2eeb05f commit 9e634fe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cupcake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: nix
on:
pull_request:
push:
branches:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -107,13 +108,18 @@ jobs:
cmake-version: ${{ matrix.cmake }}
- name: install Ninja on Linux
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'ubuntu')
run: sudo apt install ninja-build
run: |
sudo apt update
sudo apt install ninja-build
- name: install Ninja on macOS
if: matrix.generator == 'Ninja' && startsWith(matrix.platform, 'macos')
run: brew install ninja
- name: install GCC on Linux
if: matrix.compiler == 'gcc' && startsWith(matrix.platform, 'ubuntu')
run: sudo apt install gcc-13
run: |
sudo apt update
apt search gcc
sudo apt install gcc-13
- name: install GCC on macOS
if: matrix.compiler == 'gcc' && startsWith(matrix.platform, 'macos')
run: brew install gcc@13
Expand Down

0 comments on commit 9e634fe

Please sign in to comment.