Browse Source

Fixed conditionals

tags/v0.8.1
Martin Evans 2 years ago
parent
commit
dc8c2309b6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/compile.yml

+ 2
- 2
.github/workflows/compile.yml View File

@@ -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


Loading…
Cancel
Save