-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
79 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: E2E Cuda | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
e2e-build-hw: | ||
# trigger only if head commit contains "test-e2e" | ||
if: ${{ contains(github.event.head_commit.message, 'test-e2e') }} | ||
name: Start e2e job | ||
# use core flow, run it with cuda specific parameters | ||
uses: ./.github/workflows/e2e_core.yml | ||
# parameters that we pass to the core flow | ||
with: | ||
name: "CUDA" | ||
runner_tag: "CUDA_E2E" | ||
str_name: "cuda" | ||
prefix: "ext_oneapi_" | ||
config: "--cuda" | ||
unit: "gpu" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: E2E OpenCL | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run every day at 23:00 UTC | ||
- cron: '0 23 * * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
e2e-build-hw: | ||
name: Start e2e job | ||
# use core flow, run it with OpenCL specific parameters | ||
uses: ./.github/workflows/e2e_core.yml | ||
# parameters that we pass to the core flow | ||
with: | ||
name: "OPENCL" | ||
runner_tag: "OPENCL" | ||
str_name: "opencl" | ||
prefix: "" | ||
config: "" | ||
unit: "cpu" |