Skip to content

Commit

Permalink
Fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
marbre committed Nov 25, 2024
1 parent fd946de commit 6a3afc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-libshortfin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6a3afc6

Please sign in to comment.