-
Notifications
You must be signed in to change notification settings - Fork 313
111 lines (99 loc) · 3.9 KB
/
pkgs-test.yml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Packages Test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
# Runs at 00:00 UTC on the 1, 16 and 31th of every month、
schedule:
- cron: '0 0 */15 * *'
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
concurrency:
group: pkgs-test
cancel-in-progress: false # wait for finish.
jobs:
change_pull_request:
if: ${{ github.event_name == 'pull_request' }}
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
package-append-res: true
deploy-pages: false
change_push:
if: ${{ github.event_name == 'push' }}
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
package-append-res: true
deploy-pages: true
master-stm32h750-artpi-test:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: stm32/stm32h750-artpi:sourcery-arm
rt-thread-versions: branch:master
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false
master-k210-test:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
needs: master-stm32h750-artpi-test
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: k210:sourcery-riscv-none-embed
rt-thread-versions: branch:master
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false
master-qemu-vexpress-a9-test:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
needs: master-k210-test
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: qemu-vexpress-a9:sourcery-arm
rt-thread-versions: branch:master
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false
v4_1_1-stm32h750-artpi-test:
needs: master-qemu-vexpress-a9-test
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: stm32/stm32h750-artpi:sourcery-arm
rt-thread-versions: tag:v4.1.1
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false
v4_1_1-k210-test:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
needs: v4_1_1-stm32h750-artpi-test
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: k210:sourcery-riscv-none-embed
rt-thread-versions: tag:v4.1.1
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false
v4_1_1-qemu-vexpress-a9-test:
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
needs: v4_1_1-k210-test
uses: RT-Thread/pkgs-test/.github/workflows/pkgs-action.yml@main
with:
bsps: qemu-vexpress-a9:sourcery-arm
rt-thread-versions: tag:v4.1.1
package-append-res: true
package-test-all: true
deploy-pages: true
check-errors: false