Skip to content

Commit

Permalink
Fix the syntax error in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwak-work committed Sep 27, 2024
1 parent 5870e68 commit 87b68c1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
fi
fi
- name: Test Slang
if: ${{matrix.platform}} != 'wasm'
if: ${{ matrix.platform != 'wasm' }}
run: |
export SLANG_RUN_SPIRV_VALIDATION=1
export SLANG_USE_SPV_SOURCE_LANGUAGE_UNKNOWN=1
Expand All @@ -159,8 +159,7 @@ jobs:
-expected-failure-list tests/expected-failure-record-replay-tests.txt
fi
- name: Test Slang via glsl
if: ${{matrix.full-gpu-tests}}
if: ${{matrix.platform}} != 'wasm'
if: ${{ matrix.full-gpu-tests && matrix.platform != 'wasm' }}
run: |
export SLANG_RUN_SPIRV_VALIDATION=1
export SLANG_USE_SPV_SOURCE_LANGUAGE_UNKNOWN=1
Expand Down

0 comments on commit 87b68c1

Please sign in to comment.