[CI] Enable L0 tests with BMG gpu card #498
Workflow file for this run
This file contains hidden or 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
# Various non-standard tests, requiring e.g. longer run | |
name: Nightly | |
# This job is run at 04:00 UTC every day or on demand. | |
on: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 4 * * *' | |
permissions: | |
contents: read | |
env: | |
BUILD_DIR : "${{github.workspace}}/build" | |
jobs: | |
L0: | |
uses: ./.github/workflows/reusable_gpu.yml | |
with: | |
provider: "LEVEL_ZERO" | |
runner: "L0" | |
L0-BMG: | |
uses: ./.github/workflows/reusable_gpu.yml | |
with: | |
provider: "LEVEL_ZERO" | |
runner: "L0-BMG" | |
os: "['Ubuntu']" | |
CUDA: | |
uses: ./.github/workflows/reusable_gpu.yml | |
with: | |
provider: "CUDA" | |
runner: "CUDA" |