-
Notifications
You must be signed in to change notification settings - Fork 66
190 lines (159 loc) · 5.49 KB
/
build-openwrt.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# SPDX-FileCopyrightText: Copyright (c) 2024 沉默の金 <cmzj@cmzj.org>
# SPDX-License-Identifier: MIT
name: Build OpenWrt-K
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * *'
push:
paths:
- '.github/**'
- 'files/**'
- 'build_helper/**'
- 'config/**'
- '!.gitignore'
- '!LICENSE'
- '!README.md'
- '!img/**'
permissions:
actions: write
contents: write
discussions: write
env:
GITHUB_TOKEN: ${{ github.token }}
BUILD_HELPER_DEBUG: true
jobs:
prepare:
outputs:
matrix: ${{ steps.run.outputs.matrix }}
runs-on: ubuntu-22.04
name: 规划与准备
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare
- name: 准备
id: run
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task prepare
- name: 上传
uses: ./../../../../../opt/OpenWrt-K/.github/action/upload
base-builds:
runs-on: ubuntu-22.04
needs: prepare
name: 构建工具链与内核(${{ matrix.name }})
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare
- name: 准备编译
id: prepare
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
- name: 缓存toolchain
uses: actions/cache@v4
id: cache-toolchain
if: ${{ steps.prepare.outputs.use-cache }}
with:
path: |
${{ steps.prepare.outputs.openwrt-path }}/staging_dir/host*
${{ steps.prepare.outputs.openwrt-path }}/staging_dir/tool*
key: ${{ steps.prepare.outputs.toolchain-key }}
- name: 缓存ccache
uses: actions/cache@v4
if: ${{ steps.prepare.outputs.use-cache }}
with:
path: ${{ steps.prepare.outputs.openwrt-path }}/.ccache
key: ${{ steps.prepare.outputs.cache-key }}
restore-keys: |
${{ steps.prepare.outputs.cache-restore-key }}
- name: 编译
id: build
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task base-builds --config ${{ matrix.config }}
env:
CACHE_HIT: ${{ steps.cache-toolchain.outputs.cache-hit }}
- name: 上传
if: success() || failure()
uses: ./../../../../../opt/OpenWrt-K/.github/action/upload
build-packages:
runs-on: ubuntu-22.04
needs: [prepare,base-builds]
name: 构建软件包(${{ matrix.name }})
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare
- name: 准备编译
id: prepare
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
- name: 缓存ccache
uses: actions/cache@v4
if: ${{ steps.prepare.outputs.use-cache }}
with:
path: ${{ steps.prepare.outputs.openwrt-path }}/.ccache
key: ${{ steps.prepare.outputs.cache-key }}
restore-keys: |
${{ steps.prepare.outputs.cache-restore-key }}
- name: 编译
id: build
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build_packages --config ${{ matrix.config }}
- name: 上传
if: success() || failure()
uses: ./../../../../../opt/OpenWrt-K/.github/action/upload
build-ImageBuilder:
runs-on: ubuntu-22.04
needs: [prepare,base-builds]
name: 构建Image Builder与内核模块(${{ matrix.name }})
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare
- name: 准备编译
id: prepare
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
- name: 缓存ccache
uses: actions/cache@v4
if: ${{ steps.prepare.outputs.use-cache }}
with:
path: ${{ steps.prepare.outputs.openwrt-path }}/.ccache
key: ${{ steps.prepare.outputs.cache-key }}
restore-keys: |
${{ steps.prepare.outputs.cache-restore-key }}
- name: 编译
id: build
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build_image_builder --config ${{ matrix.config }}
- name: 上传
if: success() || failure()
uses: ./../../../../../opt/OpenWrt-K/.github/action/upload
build-images-releases:
runs-on: ubuntu-22.04
needs: [prepare,base-builds,build-ImageBuilder,build-packages]
name: 构建镜像并发布(${{ matrix.name }})
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare
- name: 准备构建
id: prepare
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
- name: 构建
id: build
working-directory: /opt/OpenWrt-K
run: python3 -m build_helper --task build_images_releases --config ${{ matrix.config }}
- name: 上传
if: success() || failure()
uses: ./../../../../../opt/OpenWrt-K/.github/action/upload