Skip to content

Commit f5366fb

Browse files
authored
[CI] Triton_v3.2.x fix ascend and nvidia backend yml file bugs (#524)
1 parent de9f0cf commit f5366fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ascend-build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
backend: ascend
3434

3535
- name: FlagTree Build on Ascend
36-
if: steps.check_backend.outputs.should_skip == 'true'
36+
if: steps.check_backend.outputs.should_skip != 'true'
3737
shell: bash
3838
run: |
3939
set -x
@@ -43,7 +43,7 @@ jobs:
4343
MAX_JOBS=32 python3 -m pip install . --no-build-isolation
4444
4545
- name: FlagTree Test on Ascend
46-
if: steps.check_backend.outputs.should_skip == 'true'
46+
if: steps.check_backend.outputs.should_skip != 'true'
4747
shell: bash
4848
run: |
4949
set -x

.github/workflows/nv-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
MAX_JOBS=32 python3 -m pip install . --no-build-isolation
7878
7979
- name: FlagTree Test on NVidia
80-
if: steps.check_backend.outputs.should_skip == 'true'
80+
if: steps.check_backend.outputs.should_skip != 'true'
8181
shell: bash
8282
run: |
8383
set -x

0 commit comments

Comments
 (0)