We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608de48 commit c0bf0deCopy full SHA for c0bf0de
.github/workflows/build-openwrt.yml
@@ -74,7 +74,7 @@ jobs:
74
run: |
75
cp ./.config openwrt/.config
76
cd openwrt
77
- rm -rf ./bin ./build_dir ./tmp
+ rm -rf ./bin ./build_dir ./tmp ./staging_dir
78
make defconfig
79
cat ./.config
80
@@ -103,11 +103,15 @@ jobs:
103
sed -i "s/192.168.1.1/192.168.8.1/" package/base-files/files/bin/config_generate
104
cat package/base-files/files/bin/config_generate|grep lan\)
105
106
+ - name: make download
107
+ run: |
108
+ cd openwrt
109
+ make download -j8 V=99
110
+
111
- name: make
112
113
114
find ./ -name *gcc
- make download -j8 V=99
115
rm -rf build.log
116
# | grep -i error
117
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log | grep -i error
0 commit comments