Skip to content

Commit 195d873

Browse files
committed
disable
1 parent 13c73c8 commit 195d873

File tree

1 file changed

+68
-68
lines changed

1 file changed

+68
-68
lines changed

.github/workflows/sycl-rel-nightly.yml

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -112,71 +112,71 @@ jobs:
112112
extra_lit_opts: ${{ matrix.extra_lit_opts }}
113113
repo_ref: ${{ github.sha }}
114114

115-
build-sycl-cts:
116-
needs: ubuntu2204_build
117-
if: ${{ always() && !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
118-
uses: ./.github/workflows/sycl-linux-run-tests.yml
119-
with:
120-
name: Build SYCL-CTS
121-
runner: '["Linux", "build"]'
122-
cts_testing_mode: 'build-only'
123-
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps-ae0e85c8391ba07b7c895e36cfb8a78cacd421dd
124-
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
125-
tests_selector: cts
126-
repo_ref: ${{ github.sha }}
127-
# Author: Tom Deakin <[email protected]>
128-
# Date: Thu Jul 10 16:45:48 2025 +0100
129-
# Merge pull request #1102 from steffenlarsen/steffen/remove_secondary_queue_exceptions
130-
# Remove expected exceptions for secondary queue
131-
tests_ref: 19e4ed34377c8a8a354d701772427be8c5430b0d
132-
sycl_toolchain_artifact: sycl_linux_default
133-
sycl_toolchain_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
134-
sycl_toolchain_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
135-
sycl_cts_artifact: sycl_cts_bin_linux
136-
137-
run-sycl-cts:
138-
needs: [ubuntu2204_build, build-sycl-cts]
139-
if: ${{ always() && !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
140-
strategy:
141-
fail-fast: false
142-
matrix:
143-
include:
144-
- name: SYCL-CTS on OCL CPU
145-
runner: '["Linux", "gen12"]'
146-
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
147-
target_devices: opencl:cpu
148-
149-
- name: SYCL-CTS on L0 gen12
150-
runner: '["Linux", "gen12"]'
151-
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
152-
target_devices: level_zero:gpu
153-
uses: ./.github/workflows/sycl-linux-run-tests.yml
154-
with:
155-
name: ${{ matrix.name }}
156-
runner: ${{ matrix.runner }}
157-
cts_testing_mode: 'run-only'
158-
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps-ae0e85c8391ba07b7c895e36cfb8a78cacd421dd
159-
image_options: ${{ matrix.image_options }}
160-
target_devices: ${{ matrix.target_devices }}
161-
tests_selector: cts
162-
repo_ref: ${{ github.sha }}
163-
sycl_toolchain_artifact: sycl_linux_default
164-
sycl_toolchain_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
165-
sycl_toolchain_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
166-
sycl_cts_artifact: sycl_cts_bin_linux
167-
168-
hardening-check:
169-
needs: [ubuntu2204_build, build-win]
170-
if: |
171-
always()
172-
&& !cancelled()
173-
&& needs.ubuntu2204_build.outputs.build_conclusion == 'success'
174-
&& needs.build-win.outputs.build_conclusion == 'success'
175-
uses: ./.github/workflows/sycl-hardening-check.yml
176-
with:
177-
sycl_linux_artifact: sycl_linux_release
178-
sycl_linux_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
179-
sycl_linux_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
180-
181-
sycl_windows_artifact: sycl_windows_release
182-
sycl_windows_archive: ${{ needs.build-win.outputs.artifact_archive_name }}
115+
# build-sycl-cts:
116+
# needs: ubuntu2204_build
117+
# if: ${{ always() && !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
118+
# uses: ./.github/workflows/sycl-linux-run-tests.yml
119+
# with:
120+
# name: Build SYCL-CTS
121+
# runner: '["Linux", "build"]'
122+
# cts_testing_mode: 'build-only'
123+
# image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps-ae0e85c8391ba07b7c895e36cfb8a78cacd421dd
124+
# image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
125+
# tests_selector: cts
126+
# repo_ref: ${{ github.sha }}
127+
# # Author: Tom Deakin <[email protected]>
128+
# # Date: Thu Jul 10 16:45:48 2025 +0100
129+
# # Merge pull request #1102 from steffenlarsen/steffen/remove_secondary_queue_exceptions
130+
# # Remove expected exceptions for secondary queue
131+
# tests_ref: 19e4ed34377c8a8a354d701772427be8c5430b0d
132+
# sycl_toolchain_artifact: sycl_linux_default
133+
# sycl_toolchain_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
134+
# sycl_toolchain_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
135+
# sycl_cts_artifact: sycl_cts_bin_linux
136+
137+
# run-sycl-cts:
138+
# needs: [ubuntu2204_build, build-sycl-cts]
139+
# if: ${{ always() && !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
140+
# strategy:
141+
# fail-fast: false
142+
# matrix:
143+
# include:
144+
# - name: SYCL-CTS on OCL CPU
145+
# runner: '["Linux", "gen12"]'
146+
# image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
147+
# target_devices: opencl:cpu
148+
149+
# - name: SYCL-CTS on L0 gen12
150+
# runner: '["Linux", "gen12"]'
151+
# image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
152+
# target_devices: level_zero:gpu
153+
# uses: ./.github/workflows/sycl-linux-run-tests.yml
154+
# with:
155+
# name: ${{ matrix.name }}
156+
# runner: ${{ matrix.runner }}
157+
# cts_testing_mode: 'run-only'
158+
# image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:alldeps-ae0e85c8391ba07b7c895e36cfb8a78cacd421dd
159+
# image_options: ${{ matrix.image_options }}
160+
# target_devices: ${{ matrix.target_devices }}
161+
# tests_selector: cts
162+
# repo_ref: ${{ github.sha }}
163+
# sycl_toolchain_artifact: sycl_linux_default
164+
# sycl_toolchain_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
165+
# sycl_toolchain_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
166+
# sycl_cts_artifact: sycl_cts_bin_linux
167+
168+
# hardening-check:
169+
# needs: [ubuntu2204_build, build-win]
170+
# if: |
171+
# always()
172+
# && !cancelled()
173+
# && needs.ubuntu2204_build.outputs.build_conclusion == 'success'
174+
# && needs.build-win.outputs.build_conclusion == 'success'
175+
# uses: ./.github/workflows/sycl-hardening-check.yml
176+
# with:
177+
# sycl_linux_artifact: sycl_linux_release
178+
# sycl_linux_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
179+
# sycl_linux_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
180+
181+
# sycl_windows_artifact: sycl_windows_release
182+
# sycl_windows_archive: ${{ needs.build-win.outputs.artifact_archive_name }}

0 commit comments

Comments
 (0)