From 6a3afc64e7b66f2ab964f3211a2b0c42b9336776 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Mon, 25 Nov 2024 19:00:08 +0100 Subject: [PATCH] Fix conditional --- .github/workflows/ci-libshortfin.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-libshortfin.yml b/.github/workflows/ci-libshortfin.yml index 004f03c08..33a6df72b 100644 --- a/.github/workflows/ci-libshortfin.yml +++ b/.github/workflows/ci-libshortfin.yml @@ -136,13 +136,13 @@ jobs: cmake --build build --target all - name: pip install shortfin - if: "${{ matrix.name }} != 'Ubuntu (Clang)(host-only)'" + if: ${{ matrix.name != 'Ubuntu (Clang)(host-only)'}} working-directory: ${{ env.LIBSHORTFIN_DIR }} run: | pip install -v -e build/ - name: Test shortfin - if: "${{ matrix.name }} != 'Ubuntu (Clang)(host-only)'" + if: ${{ matrix.name != 'Ubuntu (Clang)(host-only)'}} working-directory: ${{ env.LIBSHORTFIN_DIR }} run: | ctest --timeout 30 --output-on-failure --test-dir build