From dc8c2309b66b91e3c86dc1a641f0a10d0c61ae30 Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Wed, 15 Nov 2023 21:15:50 +0000 Subject: [PATCH] Fixed conditionals --- .github/workflows/compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index cdaeeff0..f73a432a 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -85,7 +85,7 @@ jobs: name: llama-bin-win-${{ matrix.build }}-x64.dll compile-cublas: - if: ${{ github.event.inputs.cublas }} + if: ${{ github.event.inputs.cublas != 'false' }} name: Compile (cublas) strategy: fail-fast: false @@ -139,7 +139,7 @@ jobs: name: llama-bin-linux-cublas-cu${{ matrix.cuda }}-x64.so compile-macos: - if: ${{ github.event.inputs.macos }} + if: ${{ github.event.inputs.macos != 'false' }} name: Compile (MacOS) strategy: fail-fast: true