-
Notifications
You must be signed in to change notification settings - Fork 6k
62 lines (53 loc) · 1.5 KB
/
CI-Windows.yml
File metadata and controls
62 lines (53 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: CI-Windows
on:
pull_request:
types: [opened, synchronize]
branches: [develop, release/**, fleety_*]
permissions: read-all
concurrency:
group: ${{ github.event.pull_request.number }}-${{ github.workflow }}
cancel-in-progress: true
env:
PR_ID: ${{ github.event.pull_request.number }}
COMMIT_ID: ${{ github.event.pull_request.head.sha }}
jobs:
check-skill:
name: Check file paths
if: ${{ github.repository_owner == 'PaddlePaddle' }}
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
can-skip: ${{ steps.skip-skill.outputs.should-skip }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run skip check
id: skip-skill
uses: ./.github/actions/skip-skill
with:
ignore-paths: '.agents/skills/**'
clone:
name: Clone-windows
needs: check-skill
uses: ./.github/workflows/_Clone-windows.yml
with:
skill-can-skip: ${{ needs.check-skill.outputs.can-skip }}
win-openblas:
name: Windows-OPENBLAS
uses: ./.github/workflows/_Windows-OPENBLAS.yml
needs: clone
with:
clone-can-skip: ${{ needs.clone.outputs.can-skip }}
win-gpu:
name: Windows-GPU
uses: ./.github/workflows/_Windows-GPU.yml
needs: clone
with:
clone-can-skip: ${{ needs.clone.outputs.can-skip }}
win-inference:
name: Windows-Inference
uses: ./.github/workflows/_Windows-Inference.yml
needs: clone
with:
clone-can-skip: ${{ needs.clone.outputs.can-skip }}