Skip to content

[CI] Add CI-test to test #6

[CI] Add CI-test to test

[CI] Add CI-test to test #6

Workflow file for this run

name: CI-test
on:
pull_request:
types: [opened, synchronize]
permissions: read-all
concurrency:
group: ${{ github.event.pull_request.number }}-test
cancel-in-progress: true
env:
PR_ID: ${{ github.event.pull_request.number }}
COMMIT_ID: ${{ github.event.pull_request.head.sha }}
jobs:
clone:
name: Clone-linux-test
uses: ./.github/workflows/_Clone-linux.yml
with:
pr_dir: PR-test
xpu:
name: Linux-XPU-test
uses: ./.github/workflows/_Linux-XPU.yml
with:
pr_dir: PR-test
needs: clone
coverage:
name: PR-CI-Coverage-test
uses: ./.github/workflows/_Coverage.yml
with:
pr_dir: PR-test
needs: clone
cpu:
name: Linux-CPU-test
uses: ./.github/workflows/_CPU.yml
with:
pr_dir: PR-test
needs: clone
npu:
name: Linux-NPU-test
uses: ./.github/workflows/_NPU.yml
with:
pr_dir: PR-test
needs: cpu