Skip to content

[CI] Update sycl-weekly.yml #17601

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
Mar 24, 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
8 changes: 4 additions & 4 deletions .github/workflows/sycl-weekly.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# This workflow builds SYCL-CTS with -fsycl-use-spirv-backend-for-spirv-gen and
# runs it with opencl:cpu & gen12 and level_zero:gpu & PVC on Sundays.

name: SYCL-CTS with SPIR-V backend
name: SYCL Weekly

on:
workflow_dispatch:
schedule:
# At 00:00 on Sunday.
- cron: '0 0 * * 0'

permissions: read-all
Expand All @@ -20,6 +18,7 @@ jobs:
build_artifact_suffix: default
build_configure_extra_args: ''

# This job builds SYCL-CTS with -fsycl-use-spirv-backend-for-spirv-gen.
build-sycl-cts:
needs: ubuntu2204_build
if: ${{ always() && !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
Expand All @@ -35,6 +34,7 @@ jobs:
sycl_toolchain_archive: ${{ needs.ubuntu2204_build.outputs.artifact_archive_name }}
sycl_toolchain_decompress_command: ${{ needs.ubuntu2204_build.outputs.artifact_decompress_command }}
extra_cmake_args: -DDPCPP_FLAGS=-fsycl-use-spirv-backend-for-spirv-gen
sycl_cts_artifact: sycl_cts_bin

run-sycl-cts:
needs: [ubuntu2204_build, build-sycl-cts]
Expand Down
Loading