Skip to content

Commit 8fb041b

Browse files
[CI] Don't use LIT_FILTER_OUT in sycl_linux_gen12_exp.yml (#10397)
Empty value in the variable matches everything and results in no tests being run. Instead, change the input parameter to `env` and use default value to make its update easier.
1 parent a591ae0 commit 8fb041b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/sycl_linux_gen12_exp.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: Experiment with Linux GEN12 runners
2-
run-name: Linux GEN12 ${{ inputs.lit_filter }} / no ${{ inputs.lit_filter_out}} on ${{ inputs.devices }}
2+
run-name: Linux GEN12 ${{ inputs.env }} on ${{ inputs.devices }}
33

44
on:
55
workflow_dispatch:
66
inputs:
7-
lit_filter:
8-
required: false
9-
lit_filter_out:
10-
required: false
7+
env:
8+
default: '{"LIT_FILTER":""}'
119
devices:
1210
default: 'ext_oneapi_level_zero:gpu'
1311

@@ -22,4 +20,4 @@ jobs:
2220
target_devices: ${{ inputs.devices }}
2321
ref: ${{ github.sha }}
2422

25-
env: '{"LIT_FILTER":"${{ inputs.lit_filter }}","LIT_FILTER_OUT":"${{ inputs.lit_filter_out }}"}'
23+
env: ${{ inputs.env }}

0 commit comments

Comments
 (0)