Skip to content

[SYCL][CI] Update nightly to use resolve_matrix properly #6528

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, 2022
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
10 changes: 8 additions & 2 deletions .github/workflows/sycl_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,30 @@ on:
- '.github/workflows/sycl_nightly.yml'

jobs:
resolve_matrix:
name: Resolve Test Matrix
uses: ./.github/workflows/sycl_resolve_test_matrix.yml
with:
lts_config: "ocl_gen9;ocl_x64"

ubuntu2004_build_test:
if: github.repository == 'intel/llvm'
uses: ./.github/workflows/sycl_linux_build_and_test.yml
needs: resolve_matrix
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this stopped running SYCL end-to-end tests due to missing

with:
  lts_matrix: needs.resolve_matrix.outputs.lts_matrix

@bader , do we need to fix that? Or should we just remove matrix generation from nightly alltogether?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll let @sergey-semenov to decide on the runtime library validation requirements/process.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stdale-intel and I want to use all the E2E tests as the criteria for "latest-good" nightly release, so I'm re-enabling missing tasks in #10254.

with:
build_cache_root: "/__w/"
build_artifact_suffix: default
build_configure_extra_args: ''
lts_config: "ocl_gen9;ocl_x64"

ubuntu2004_opaque_pointers_build_test:
if: github.repository == 'intel/llvm'
uses: ./.github/workflows/sycl_linux_build_and_test.yml
needs: resolve_matrix
with:
build_cache_root: "/__w/"
build_cache_suffix: opaque_pointers
build_artifact_suffix: opaque_pointers
build_configure_extra_args: "--hip --cuda --enable-esimd-emulator --cmake-opt=-DDPCPP_ENABLE_OPAQUE_POINTERS=TRUE"
lts_config: "ocl_gen9;ocl_x64"

windows_default:
name: Windows
Expand Down