-
Notifications
You must be signed in to change notification settings - Fork 0
319 lines (290 loc) · 12.7 KB
/
build-2305.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
name: Build openwrt 23.05
# Fix for broken build: https://github.com/softprops/action-gh-release/issues/236
permissions:
contents: write
actions: write
on:
repository_dispatch:
workflow_dispatch:
inputs:
ssh:
description: 'SSH connection to Actions'
required: false
default: 'false'
env:
TZ: Asia/Shanghai
jobs:
build:
runs-on: Ubuntu-22.04
if: github.event.repository.owner.id == github.event.sender.id
name: Build ${{matrix.target}} openwrt 23.05
strategy:
fail-fast: false
matrix:
include:
- target: mt798x-iptables
- target: mt798x-nftables
- target: mt798x-nousb-iptables
- target: mt798x-nousb-nftables
- target: ramips-iptables
- target: ramips-nftables
steps:
- name: 检查
uses: actions/checkout@main
- name: 初始化环境
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo rm -rf /etc/apt/sources.list.d/* /usr/share/dotnet /usr/local/lib/android /opt/ghc
sudo -E apt-get -qq update
sudo -E apt-get -qq install build-essential clang flex g++ gawk gcc-multilib gettext \
git libncurses5-dev libssl-dev python3-distutils python3-pyelftools python3-setuptools \
libpython3-dev rsync unzip zlib1g-dev swig aria2 jq subversion qemu-utils ccache rename \
libelf-dev device-tree-compiler libgnutls28-dev coccinelle libgmp3-dev libmpc-dev libfuse-dev b43-fwcutter
sudo -E apt-get -qq purge azure-cli ghc* zulu* llvm* firefox powershell openjdk* dotnet* google* mysql* php* android*
sudo -E apt-get -qq autoremove --purge
sudo -E apt-get -qq clean
sudo timedatectl set-timezone "$TZ"
sudo mkdir -p /workdir
sudo chown $USER:$GROUPS /workdir
- name: 设置GITHUB_ENV
id: env
run: |
echo "date=$(date +'%m/%d_%Y_%H/%M')" >> $GITHUB_ENV
echo "date2=$(date +'%Y/%m %d')" >> $GITHUB_ENV
echo "date3=$(date +'%m.%d')" >> $GITHUB_ENV
VERSION="$(echo "${{github.event.action}}" | grep -Eo " [0-9.]+" | sed -e 's/ //')" || true
[ "$VERSION" ] && echo "VERSION=$VERSION" >> $GITHUB_ENV || echo "VERSION=$(date +'%m.%d')" >> $GITHUB_ENV
echo ${{matrix.target}}
source "${GITHUB_WORKSPACE}/env/common.txt"
source "${GITHUB_WORKSPACE}/env/openwrt-23.05.repo"
echo "REPO_URL=${REPO_URL}" >> $GITHUB_ENV
echo "BURN_UBOOT_IMG_URL=${BURN_UBOOT_IMG_URL}" >> $GITHUB_ENV
echo "AMLIMG_TOOL_URL=${AMLIMG_TOOL_URL}" >> $GITHUB_ENV
echo "REPO_BRANCH=${REPO_BRANCH}" >> $GITHUB_ENV
echo "DIY_SH=${DIY_SH}" >> $GITHUB_ENV
echo "DIY_SH_AFB=${DIY_SH_AFB}" >> $GITHUB_ENV
echo "DIY_SH_RFC=${DIY_SH_RFC}" >> $GITHUB_ENV
echo "UPLOAD_BIN_DIR=${UPLOAD_BIN_DIR}" >> $GITHUB_ENV
echo "UPLOAD_IPK_DIR=${UPLOAD_IPK_DIR}" >> $GITHUB_ENV
echo "UPLOAD_FIRMWARE=${UPLOAD_FIRMWARE}" >> $GITHUB_ENV
echo "UPLOAD_COWTRANSFER=${UPLOAD_COWTRANSFER}" >> $GITHUB_ENV
echo "UPLOAD_WETRANSFER=${UPLOAD_WETRANSFER}" >> $GITHUB_ENV
echo "UPLOAD_RELEASE=${UPLOAD_RELEASE}" >> $GITHUB_ENV
echo "UPLOAD_ALLKMOD=${UPLOAD_ALLKMOD}" >> $GITHUB_ENV
echo "UPLOAD_SYSUPGRADE=${UPLOAD_SYSUPGRADE}" >> $GITHUB_ENV
echo "USE_Cache=${USE_Cache}" >> $GITHUB_ENV
chmod +x $DIY_SH $DIY_SH_AFB $DIY_SH_RFC gen-sha256sum.sh
- name: 克隆源代码
working-directory: /workdir
id: clone
run: |
df -hT $PWD
git clone $REPO_URL -b $REPO_BRANCH openwrt --single-branch
ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt
cd openwrt
sed -i '$a src-git lunatic7 https://github.com/lunatickochiya/actionbased-openwrt-packages.git' feeds.conf.default
$GITHUB_WORKSPACE/$DIY_SH firewallremove
echo "status=success" >> $GITHUB_OUTPUT
- name: 增加磁盘空间
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo mkdir -p -m 777 /mnt/openwrt/dl /mnt/openwrt/bin /mnt/openwrt/staging_dir /mnt/openwrt/build_dir
ln -sf /mnt/openwrt/dl openwrt/dl
ln -sf /mnt/openwrt/bin openwrt/bin
ln -sf /mnt/openwrt/staging_dir openwrt/staging_dir
ln -sf /mnt/openwrt/build_dir openwrt/build_dir
df -hT
ls /mnt/openwrt
- name: 自定义安装包(优先于feeds)
if: steps.clone.outputs.status == 'success'
id: files
run: |
[ -d package ] && mv -f package/* openwrt/package
[ -d openwrt-2305/package-for-mt798x ] && mv -f openwrt-2305/package-for-mt798x/* openwrt/package
[ -d openwrt-2305/mypatch-2305 ] && mv -f openwrt-2305/mypatch-2305 openwrt/mypatch-2305
[ -d openwrt-2305/mypatch-2305-${{matrix.target}} ] && mv -f openwrt-2305/mypatch-2305-${{matrix.target}} openwrt/mypatch
cd openwrt
$GITHUB_WORKSPACE/$DIY_SH patch-openwrt
cd ../
echo "status=success" >> $GITHUB_OUTPUT
- name: 更新 & 安装 feeds
if: steps.files.outputs.status == 'success'
id: feeds
run: |
cd openwrt
./scripts/feeds update -a
./scripts/feeds install -a
echo "status=success" >> $GITHUB_OUTPUT
- name: 自定义配置(修复feeds)
if: steps.feeds.outputs.status == 'success'
id: config
run: |
[ -d openwrt-2305/lunatic7-revert ] && mv -f openwrt-2305/lunatic7-revert openwrt/feeds/lunatic7/lunatic7-revert
[ -d openwrt-2305/luci-patch-2305 ] && mv -f openwrt-2305/luci-patch-2305 openwrt/feeds/luci/luci-patch-2305
[ -d openwrt-2305/feeds-package-patch-2305 ] && mv -f openwrt-2305/feeds-package-patch-2305 openwrt/feeds/packages/feeds-package-patch-2305
[ -e files ] && mv files openwrt/files
[ -e package-configs ] && mv package-configs openwrt/package-configs
[ -e machine-configs/${{matrix.target}}.config ] && mv -f machine-configs/${{matrix.target}}.config openwrt/package-configs/.config
cd openwrt
$GITHUB_WORKSPACE/$DIY_SH ${{matrix.target}}
make defconfig
$GITHUB_WORKSPACE/$DIY_SH_RFC ${{matrix.target}}
echo "status=success" >> $GITHUB_OUTPUT
- name: 添加kmod
if: steps.config.outputs.status == 'success' && env.UPLOAD_ALLKMOD == 'true'
id: config2
run: |
cd openwrt
$GITHUB_WORKSPACE/$DIY_SH_RFC kmod
make defconfig
$GITHUB_WORKSPACE/$DIY_SH_RFC kmod
make defconfig
$GITHUB_WORKSPACE/$DIY_SH_RFC kmod
make defconfig
$GITHUB_WORKSPACE/$DIY_SH_RFC ${{matrix.target}}
echo "status=success" >> $GITHUB_OUTPUT
- name: Run awk command
if: steps.config.outputs.status == 'success'
working-directory: ./openwrt
run: |
awk '/${{matrix.target}}/ { print }' .config
echo "------------------------"
awk '/mediatek/ { print }' .config
echo "------------------------"
awk '/wpad/ { print }' .config
echo "------------------------"
awk '/docker/ { print }' .config
echo "------------------------"
awk '/DOCKER/ { print }' .config
echo "------------------------"
awk '/store/ { print }' .config
echo "------------------------"
awk '/perl/ { print }' .config
echo "------------------------"
awk '/dnsmasq/ { print }' .config
echo "------------------------"
awk '/CONFIG_PACKAGE_kmod/ { print }' .config
- name: 下载包文件
if: steps.config.outputs.status == 'success'
run: |
cd openwrt
make download -j$(nproc)
find dl -size -1024c -exec rm -f {} \;
- name: 缓存
uses: stupidloud/cachewrtbuild@main
if: env.USE_Cache == 'true' && !cancelled()
with:
ccache: 'true'
mixkey: ${{ matrix.target }}
clean: ${{ contains(github.event.action, 'nocache') }}
prefix: ${{ github.workspace }}/openwrt
- name: 编译固件
id: compile
working-directory: ./openwrt
run: |
echo -e "$(($(nproc)+1)) thread compile"
make -j$(($(nproc)+1)) || make -j1 V=s
echo "status=success" >> $GITHUB_OUTPUT
- name: 检查空间使用情况
if: (!cancelled())
run: df -hT
- name: 上传bin目录
uses: actions/upload-artifact@main
continue-on-error: true
if: steps.compile.outputs.status == 'success' && env.UPLOAD_BIN_DIR == 'true'
with:
name: ${{ env.VERSION }}_${{matrix.target}}
path: |
openwrt/bin/
- name: 打包ipk成zip文件
id: afb
continue-on-error: true
if: steps.compile.outputs.status == 'success' && !cancelled()
run: |
$GITHUB_WORKSPACE/$DIY_SH_AFB
echo "status=success" >> $GITHUB_OUTPUT
- name: 整理文件
id: organize
if: env.UPLOAD_FIRMWARE == 'true' && steps.afb.outputs.status == 'success' && !cancelled()
run: |
mkdir firmware ipks
[ $UPLOAD_RELEASE = true ] && cp -u -f openwrt/kernelipks.zip firmware
[ $UPLOAD_RELEASE = true ] && cp -u -f openwrt/ipks.zip firmware
cp -u -f openwrt/kernelipks.zip ipks
cp -u -f openwrt/ipks.zip ipks
mv -f openwrt/bin/targets/*/*/{*combined*,*ext4*,*sdk*,*imagebuilder*,*buildinfo*,*manifest*,*json*,*sha256sums*} ./firmware/ 2>/dev/null || true
[ $UPLOAD_SYSUPGRADE = true ] && mv -f openwrt/bin/targets/*/*/{*combined*,*sysupgrade*,*openwrt*,*initramfs*,*factory*} ./firmware/ 2>/dev/null || true
cp openwrt/.config ./firmware/${{matrix.target}}.config
cp openwrt/build_dir/target-*/linux-*/linux-*/.config ./firmware/${{matrix.target}}_kernel.config
cd firmware
echo "v${{ env.date2 }}" > version.txt
echo ${{matrix.target}} >> version.txt
rm -rf sha256sums
echo "FIRMWARE=$PWD" >> $GITHUB_ENV
echo "status=success" >> $GITHUB_OUTPUT
- name: 上传firmware目录
uses: actions/upload-artifact@main
continue-on-error: true
if: steps.organize.outputs.status == 'success' && env.UPLOAD_FIRMWARE == 'true'
with:
name: ${{ env.VERSION }}_${{matrix.target}}_firmware_23.05
path: |
firmware
- name: 上传ipk目录
uses: actions/upload-artifact@main
continue-on-error: true
if: steps.organize.outputs.status == 'success' && env.UPLOAD_IPK_DIR == 'true' && steps.afb.outputs.status == 'success'
with:
name: ${{ env.VERSION }}_${{matrix.target}}_ipks_23.05
path: |
ipks
- name: 上传固件cowtransfer
id: cowtransfer
if: steps.organize.outputs.status == 'success' && env.UPLOAD_COWTRANSFER == 'true' && !cancelled()
run: |
curl -fsSL git.io/file-transfer | sh
./transfer cow --block 2621440 -s -p 64 --no-progress ${FIRMWARE} 2>&1 | tee cowtransfer.log
echo "::warning file=cowtransfer.com::$(cat cowtransfer.log | grep https)"
echo "url=$(cat cowtransfer.log | grep https | cut -f3 -d" ")" >> $GITHUB_OUTPUT
- name: 上传固件WeTransfer
id: wetransfer
if: steps.organize.outputs.status == 'success' && env.UPLOAD_WETRANSFER == 'true' && !cancelled()
run: |
curl -fsSL git.io/file-transfer | sh
./transfer wet -s -p 16 --no-progress ${FIRMWARE} 2>&1 | tee wetransfer.log
echo "::warning file=wetransfer.com::$(cat wetransfer.log | grep https)"
echo "url=$(cat wetransfer.log | grep https | cut -f3 -d" ")" >> $GITHUB_OUTPUT
- name: 生成发布标签
id: tag
if: steps.organize.outputs.status == 'success' && env.UPLOAD_RELEASE == 'true' && !cancelled()
run: |
touch release.txt
$GITHUB_WORKSPACE/gen-sha256sum.sh
[ $UPLOAD_COWTRANSFER = true ] && echo "🔗 [Cowtransfer](${{ steps.cowtransfer.outputs.url }})" >> release.txt
[ $UPLOAD_WETRANSFER = true ] && echo "🔗 [WeTransfer](${{ steps.wetransfer.outputs.url }})" >> release.txt
echo "status=success" >> $GITHUB_OUTPUT
- name: 上传固件发布
uses: softprops/action-gh-release@v2
if: steps.tag.outputs.status == 'success' && !cancelled()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: "${{ env.FIRMWARE }}/*"
name: ${{ env.date2 }} ${{matrix.target}}-openwrt-2305
tag_name: ${{ env.date }}_${{matrix.target}}-openwrt-2305
body_path: release.txt
- name: 删除工作流
uses: Mattraks/delete-workflow-runs@main
with:
retain_days: 2
keep_minimum_runs: 3
- name: 删除旧版本
uses: dev-drprasad/delete-older-releases@master
if: env.UPLOAD_RELEASE == 'true' && !cancelled()
with:
keep_latest: 24
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}