From 3caa3bb2fe2df75ae38c9168663fb3cd1dc675d6 Mon Sep 17 00:00:00 2001 From: Pablo Hoch Date: Tue, 5 Mar 2024 11:33:09 +0100 Subject: [PATCH] ci fix --- .github/workflows/unix.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unix.yml b/.github/workflows/unix.yml index ee65d66..6cb30ae 100644 --- a/.github/workflows/unix.yml +++ b/.github/workflows/unix.yml @@ -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