Skip to content

[CI] Extend "Preview mode" testing in Nightly #19745

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,23 @@ jobs:
image_options: -u 1001 --device=/dev/dri --device=/dev/kfd
target_devices: hip:gpu

- name: Preview mode on AMD/HIP
runner: '["Linux", "amdgpu"]'
image_options: -u 1001 --device=/dev/dri --device=/dev/kfd
target_devices: hip:gpu
extra_lit_opts: --param test-preview-mode=True

- name: NVIDIA/CUDA
runner: '["Linux", "cuda"]'
image_options: -u 1001 --gpus all --cap-add SYS_ADMIN
target_devices: cuda:gpu

- name: Preview mode on NVIDIA/CUDA
runner: '["Linux", "cuda"]'
image_options: -u 1001 --gpus all --cap-add SYS_ADMIN
target_devices: cuda:gpu
extra_lit_opts: --param test-preview-mode=True

- name: Intel L0 Gen12 GPU
runner: '["Linux", "gen12"]'
target_devices: level_zero:gpu
Expand All @@ -94,6 +106,11 @@ jobs:
runner: '["Linux", "bmg"]'
target_devices: level_zero:gpu

- name: Preview mode on Intel L0 Battlemage GPU
runner: '["Linux", "bmg"]'
target_devices: level_zero:gpu
extra_lit_opts: --param test-preview-mode=True

- name: Intel L0 Arc A-Series GPU
runner: '["Linux", "arc"]'
target_devices: level_zero:gpu
Expand Down