File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 24
24
steps :
25
25
- name : Checkout
26
26
uses : actions/checkout@main
27
+ with :
28
+ # 指定分支
29
+ ref : ' main'
30
+ # 之前一直使用的是openwrt-21.02
31
+ # ref: 'openwrt-21.02'
27
32
28
33
- name : Initialization environment
29
34
env :
43
48
# working-directory: /workdir
44
49
run : |
45
50
pwd
46
- git clone -b openwrt-21.02 --single-branch --depth=1 https://github.com/immortalwrt/immortalwrt openwrt
51
+ git clone -b openwrt-23.05 --single-branch --depth=1 https://github.com/immortalwrt/immortalwrt openwrt
47
52
# ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt
48
53
ls -l
49
54
# 插件包,不要可用注释
@@ -102,7 +107,7 @@ jobs:
102
107
run : |
103
108
cd openwrt
104
109
find ./ -name *gcc
105
- make download -j8
110
+ make download -j8 V=99
106
111
rm -rf build.log
107
112
# | grep -i error
108
113
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log | grep -i error
@@ -127,7 +132,7 @@ jobs:
127
132
run : |
128
133
touch release.txt
129
134
cd openwrt/bin/targets/*/*
130
-
135
+
131
136
echo "RELEASE_PATH=$PWD" >> $GITHUB_ENV
132
137
133
138
- name : pack bin dir
You can’t perform that action at this time.
0 commit comments