Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ jobs:

- name: Build E2E tests
if: ${{ inputs.e2e_binaries_artifact && !cancelled() && steps.build.conclusion == 'success' }}
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
with:
ref: ${{ inputs.ref || github.sha }}
testing_mode: build-only
Expand All @@ -324,7 +324,7 @@ jobs:

- name: Build E2E tests with SPIR-V Backend
if: ${{ inputs.e2e_binaries_spirv_backend_artifact && !cancelled() && steps.build.conclusion == 'success' }}
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
with:
ref: ${{ inputs.ref || github.sha }}
testing_mode: build-only
Expand All @@ -335,7 +335,7 @@ jobs:

- name: Build E2E tests in Preview Mode
if: ${{ inputs.e2e_binaries_preview_artifact && !cancelled() && steps.build.conclusion == 'success' }}
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
with:
ref: ${{ inputs.ref || github.sha }}
testing_mode: build-only
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
tar -xf llvm_sycl.tar.zst -C toolchain
rm llvm_sycl.tar.zst
- name: Build and run E2E tests
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
with:
ref: ${{ inputs.ref || github.sha }}
testing_mode: full
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ jobs:

- name: Run E2E Tests
if: inputs.tests_selector == 'e2e'
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
timeout-minutes: 60
with:
ref: ${{ inputs.tests_ref || inputs.repo_ref || github.sha }}
Expand All @@ -334,7 +334,7 @@ jobs:

- name: Run SYCL CTS Tests
if: inputs.tests_selector == 'cts'
uses: ./devops/actions/run-tests/cts
uses: ./devops/actions/run-tests/linux/cts
# Normally this job takes less than 10m. But sometimes it hangs up and
# reaches the 360m limit. Set a lower limit to free up the runner earlier.
timeout-minutes: 35
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-prebuilt-e2e-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- run: |
sycl-ls
- name: Run E2E tests
uses: ./devops/actions/run-tests/e2e
uses: ./devops/actions/run-tests/linux/e2e
timeout-minutes: 20
with:
testing_mode: run-only
Expand Down
Loading