File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ jobs:
163
163
with :
164
164
name : Intel GEN12 Graphics with Level Zero
165
165
runner : ' ["Windows","gen12"]'
166
+ target_devices : level_zero:gpu
166
167
sycl_toolchain_archive : ${{ needs.build-win.outputs.artifact_archive_name }}
167
168
168
169
cuda-aws-start :
Original file line number Diff line number Diff line change 61
61
- name : SYCL End-to-end tests
62
62
shell : bash {0}
63
63
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 }}
65
65
run : |
66
66
ninja -C build-e2e check-sycl-e2e > e2e.log 2>&1
67
67
exit_code=$?
Original file line number Diff line number Diff line change 73
73
- name : Run End-to-End tests
74
74
shell : bash {0}
75
75
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 }}
77
77
run : |
78
78
# Run E2E tests.
79
79
if [[ ${{ inputs.cxx }} == 'icx' ]]; then
You can’t perform that action at this time.
0 commit comments