Skip to content

Commit

Permalink
ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohoch committed Mar 5, 2024
1 parent cec0a04 commit 3caa3bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,29 +111,29 @@ jobs:

# ==== INSTALL ====
- name: Update Packages
if: !startsWith(matrix.config.os, 'macos-')
if: ${{ !startsWith(matrix.config.os, 'macos-') }}
env:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get update

- name: Install LLVM
if: !startsWith(matrix.config.os, 'macos-') && startsWith(matrix.config.cc, 'clang')
if: ${{ !startsWith(matrix.config.os, 'macos-') && startsWith(matrix.config.cc, 'clang') }}
uses: ./.github/actions/install-llvm
with:
version: $LLVM_VERSION

- name: Install ninja (Ubuntu)
if: !startsWith(matrix.config.os, 'macos-')
if: ${{ !startsWith(matrix.config.os, 'macos-') }}
env:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get install -y --no-install-recommends ninja-build

- name: Install ninja (macOS)
if: startsWith(matrix.config.os, 'macos-')
if: ${{ startsWith(matrix.config.os, 'macos-') }}
run: brew install ninja

- name: Install Valgrind
if: matrix.config.mode == 'Debug' && matrix.config.cc == 'gcc-$GCC_VERSION'
if: ${{ matrix.config.mode == 'Debug' && matrix.config.cc == 'gcc-$GCC_VERSION' }}
env:
DEBIAN_FRONTEND: noninteractive
run: sudo apt-get install -y --no-install-recommends valgrind
Expand Down

0 comments on commit 3caa3bb

Please sign in to comment.