Skip to content

Commit feb8899

Browse files
committed
[CI] Test on all devices when not specified
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent b7093bf commit feb8899

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/sycl-nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ jobs:
163163
with:
164164
name: Intel GEN12 Graphics with Level Zero
165165
runner: '["Windows","gen12"]'
166+
target_devices: level_zero:gpu
166167
sycl_toolchain_archive: ${{ needs.build-win.outputs.artifact_archive_name }}
167168

168169
cuda-aws-start:

devops/actions/run-tests/e2e/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ runs:
6161
- name: SYCL End-to-end tests
6262
shell: bash {0}
6363
env:
64-
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
64+
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices || 'all' }} ${{ inputs.extra_lit_opts }}
6565
run: |
6666
ninja -C build-e2e check-sycl-e2e > e2e.log 2>&1
6767
exit_code=$?

devops/actions/run-tests/windows/e2e/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ runs:
7373
- name: Run End-to-End tests
7474
shell: bash {0}
7575
env:
76-
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time ${{ inputs.e2e_testing_mode == 'run-only' && 1200 || 3600 }} --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
76+
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time ${{ inputs.e2e_testing_mode == 'run-only' && 1200 || 3600 }} --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices || 'all' }} ${{ inputs.extra_lit_opts }}
7777
run: |
7878
# Run E2E tests.
7979
if [[ ${{ inputs.cxx }} == 'icx' ]]; then

0 commit comments

Comments
 (0)