Skip to content

Commit 127cb65

Browse files
committed
fix passing LLVM LIT arguments in workflows
1 parent ac9223f commit 127cb65

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/e2e_core.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ jobs:
147147
run: cmake --build ${{github.workspace}}/sycl_build -j
148148

149149
- name: Set extra llvm-lit options
150-
run: echo "LIT_OPTS=\"-sv ${{matrix.adapter.extra_lit_flags}}\"" >> $GITHUB_ENV
150+
if: matrix.adapter.extra_lit_flags != ''
151+
run: echo "LIT_OPTS=${{matrix.adapter.extra_lit_flags}}" >> $GITHUB_ENV
151152

152153
- name: Run check-sycl
153154
# Remove after fixing SYCL test :: abi/layout_handler.cpp

.github/workflows/e2e_level_zero.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
filter_out: "GroupAlgorithm/root_group.cpp|Basic/exceptions-SYCL-2020.cpp|Graph/UnsupportedDevice/device_query.cpp|Graph/RecordReplay/exception_inconsistent_contexts.cpp"
3434
# These runners by default spawn upwards of 260 workers. That's too much for the GPU.
3535
# We also add a time out just in case some test hangs
36-
extra_lit_flags: "-j 50 --max-time 600"
36+
extra_lit_flags: "-sv -j 50 --max-time 600"

0 commit comments

Comments
 (0)