Skip to content

Commit 08b5240

Browse files
committed
Fix broken setup condition
asan && !comprehensive doesn't require setup, so the negation would be !asan || comprehensive.
1 parent 35c0da2 commit 08b5240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
- name: make install
172172
uses: ./.github/actions/install-linux
173173
- name: Setup
174-
if: ${{ !matrix.asan && !inputs.comprehensive }}
174+
if: ${{ !matrix.asan || inputs.comprehensive }}
175175
uses: ./.github/actions/setup-x64
176176
- name: Test
177177
if: ${{ inputs.comprehensive || !matrix.asan }}

0 commit comments

Comments
 (0)