-
Notifications
You must be signed in to change notification settings - Fork 50
63 lines (58 loc) · 1.48 KB
/
Copy pathauto-trigger-workflows.yml
File metadata and controls
63 lines (58 loc) · 1.48 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
63
name: auto trigger workflows
on:
workflow_dispatch:
workflow_run:
workflows: ["delete old workflows"]
types:
- completed
jobs:
build:
name: build ${{matrix.target}} ${{matrix.source}}
strategy:
fail-fast: false
matrix:
source: [immwrt, lean]
target: [x86-64]
uses: ./.github/workflows/build-x86-64-openwrt.yml
with:
source: ${{matrix.source}}
target: ${{matrix.target}}
ip_address: 10.0.0.2
partsize: 800
toolchain: true
artifact: false
release: true
#///////////////////////////////////////////////////////
build2:
name: build armv8 ${{matrix.source}}
strategy:
fail-fast: false
matrix:
source: [immwrt, lean]
uses: ./.github/workflows/build-armv8-openwrt.yml
with:
source: ${{matrix.source}}
ip_address: 10.0.0.2
openwrt_board: s905d_s905x3
openwrt_kernel: 6.12.y_6.18.y
kernel_repo: ophub/kernel
toolchain: true
artifact: false
release: true
#///////////////////////////////////////////////////////
build3:
name: build ${{matrix.target}} ${{matrix.wifi}}
strategy:
fail-fast: false
matrix:
target: [ipq60xx]
wifi: [wifi-yes, wifi-no]
uses: ./.github/workflows/build-ipq60xx-openwrt.yml
with:
source: immwrt
target: ${{matrix.target}}
ip_address: 10.0.0.1
wifi: ${{matrix.wifi}}
toolchain: true
artifact: false
release: true