forked from hugcabbage/shared-lede
-
Notifications
You must be signed in to change notification settings - Fork 0
212 lines (193 loc) · 6.01 KB
/
build-lede.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
#
# Copyright (C) 2022-2023 hugcabbage <[email protected]>
#
# This is free software, licensed under the MIT License.
#
# <https://github.com/hugcabbage/shared-lede>
#
# The firmware code comes from coolsnowwolf lede
#
name: build lede
on:
workflow_dispatch:
inputs:
model:
description: '选择设备'
required: true
type: choice
options:
- 'xiaomi-4a-gigabit'
- 'xiaomi-3g-v2'
- 'xiaomi-cr6608'
- 'xiaomi-cr6606'
- 'xiaomi-cr6609'
- 'xiaomi-3g'
- 'xiaomi-4'
- 'xiaomi-3-pro'
- 'redmi-ac2100'
- 'xiaomi-ac2100'
- 'phicomm-k2p'
- 'redmi-ax6s'
- 'xiaomi-4a-100m'
- 'xiaomi-4c'
- 'miwifi-nano'
- 'glinet-mt300n-v2'
- 'glinet-microuter-n300'
- 'miwifi-mini'
- 'miwifi-r3'
lan_ipad:
description: '设置LAN口IP地址(会覆盖modify脚本中的设置)'
required: false
default: ''
type: string
login_pwd:
description: '设置初始登陆密码(会覆盖modify脚本中的设置)'
required: false
default: ''
type: string
record:
description: '输入版本描述'
required: false
default: '升级内容:内核升级,更新应用版本'
type: string
cpu_overclock:
description: '超频到1100Mhz'
required: false
type: boolean
kernel_5_15:
description: '使用5.15内核(超频勿选此项)'
required: false
type: boolean
release:
description: '上传到release'
required: false
default: true
type: boolean
artifact:
description: '上传到artifact'
required: false
type: boolean
permissions:
contents: write
jobs:
to-build:
name: build lede
runs-on: ubuntu-latest
env:
EXTRA_STR: _some
steps:
- name: display initial disk space
run: |
df -h
- name: checkout
uses: actions/checkout@v4
with:
path: ${{ env.EXTRA_STR }}
- name: prepare environments
env:
REQUIREMENTS: ${{ env.EXTRA_STR }}/extra-files/requirements-transit.txt
run: |
sudo apt-get update
sudo apt-get -y install gcc-multilib gettext libncurses5-dev
sudo apt-get clean
pip3 install -r $REQUIREMENTS
- name: prepare deployment
id: prepare-deployment
env:
MODEL_NAME: ${{ inputs.model }}
LOGIN_IP: ${{ inputs.lan_ipad }}
LOGIN_PWD: ${{ inputs.login_pwd }}
SWITCH_TAG: ${{ inputs.switch_tag }}
TEMP_PREFIX: ${{ env.EXTRA_STR }}
DEPLOY_DIR: ${{ env.EXTRA_STR }}/preset-openwrt
TRANSIT_PY: ${{ env.EXTRA_STR }}/extra-files/transit.py
run: |
chmod +x $TRANSIT_PY
$TRANSIT_PY
- name: clone sources
env:
CLONE_SH: ${{ env.DEPLOY_DIR }}/${{ env.TEMP_PREFIX }}.clone.sh
run: |
chmod +x $CLONE_SH
$CLONE_SH
- name: update feeds
run: |
./scripts/feeds update -a
./scripts/feeds install -a
- name: modify configuration
env:
MODIFY_SH: ${{ steps.prepare-deployment.outputs.modify_sh }}
CPUO: ${{ inputs.cpu_overclock }}
K515: ${{ inputs.kernel_5_15 }}
run: |
$CPUO && ! $K515 && \
sed -i '/fix-cpu-clk-add-clkdev/ s/#//' $MODIFY_SH
$K515 && \
sed -i '/KERNEL_PATCHVER:=5.15/ s/#//' $MODIFY_SH
chmod +x $MODIFY_SH
$MODIFY_SH
- name: generate .config
env:
DOT_CONFIG: ${{ steps.prepare-deployment.outputs.dot_config }}
run: |
mv $DOT_CONFIG .config
make defconfig
- name: make download
run: |
make download -j8 || make download -j1 V=s
- name: compile
run: |
make -j$(nproc) || make -j1 V=s
- name: pick up files
run: |
mkdir -p _collected_firmware/packages
rm -rf $(find bin/targets/ -type d -name 'packages')
cp $(find bin/targets/ -type f) _collected_firmware
cp $(find bin/packages/ -type f -name '*.ipk') _collected_firmware/packages
cd _collected_firmware
zip -r allfiles.zip *
cd packages
zip -r ../packages.zip *
- name: generate summary
id: generate-summary
env:
MODEL_NAME: ${{ inputs.model }}
CODE_DIR: ${{ steps.prepare-deployment.outputs.codedir }}
TRANSIT_PY: ${{ env.EXTRA_STR }}/extra-files/transit.py
run: |
chmod +x $TRANSIT_PY
$TRANSIT_PY
- name: calculate tag version
id: calculate-version
if: inputs.release == true
uses: hugcabbage/next-version@v1
with:
repo_path: ${{ env.EXTRA_STR }}
- name: upload firmware to release
id: to-release
if: steps.calculate-version.conclusion == 'success' && inputs.release == true
continue-on-error: true
uses: svenstaro/upload-release-action@v2
with:
file: _collected_firmware/*
tag: ${{ steps.calculate-version.outputs.version }}
release_name: ${{ steps.calculate-version.outputs.version }} ${{ steps.generate-summary.outputs.stitle }}
overwrite: true
prerelease: false
body: |
${{ inputs.record }}
${{ steps.generate-summary.outputs.summary }}
file_glob: true
- name: upload firmware to artifact
if: inputs.artifact == true || steps.to-release.outcome != 'success'
uses: actions/upload-artifact@v3
with:
name: collected_firmware
path: |
_collected_firmware/
!_collected_firmware/*.zip
- name: display finishing disk space
run: |
df -h
echo "----------------------------"
du -h --max-depth=1