forked from KanuaK/triton-ascend
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.32 KB
/
Copy pathci.yml
File metadata and controls
46 lines (43 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Integration Tests
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'
- 'LICENSE'
- 'MANIFEST.in'
- '.gitignore'
- '.github/CODEOWNERS'
- '.github/dependabot.yml'
- 'cmake/llvm-hash.txt'
- 'third_party/ascend/patch/**'
- 'docker/**'
- 'requirements.txt'
- 'requirements_dev.txt'
- '.github/workflows/build-docker-image.yml'
- '.github/workflows/create_release.yml'
- '.github/workflows/documentation.yml'
- '.github/workflows/llvm-build.yml'
- '.github/workflows/llvm-build/**'
- '.github/workflows/pre-commit.yml'
- '.github/workflows/runner-preparation.yml'
- '.github/workflows/wheels.yml'
merge_group:
branches: [main, 'release/**', '**-dev']
types: [checks_requested]
push:
branches: [main, 'release/**', '**-dev']
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions: read-all
jobs:
runner-preparation:
uses: ./.github/workflows/runner-preparation.yml
integration-tests-ascend:
needs: runner-preparation
if: needs.runner-preparation.outputs.matrix-ASCEND != ''
uses: ./.github/workflows/integration-tests-ascend.yml
with:
matrix: ${{ needs.runner-preparation.outputs.matrix-ASCEND }}