Skip to content

Commit a0edced

Browse files
add 23.05.0 && fix ci luci not found
1 parent 6ea4784 commit a0edced

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_image_all.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
sudo -u $BUILDER echo "src-git passwall https://github.com/xiaorouji/openwrt-passwall.git;main" >> "feeds.conf.default"
9696
sudo -u $BUILDER echo "src-git passwall_packages https://github.com/xiaorouji/openwrt-passwall-packages.git;main" >> "feeds.conf.default"
9797
chown -R $BUILDER:$BUILDER $BUILD_DIR
98-
sudo -u $BUILDER ./scripts/feeds update -a
98+
while ! sudo -u $BUILDER ./scripts/feeds update -a; do echo "Try again"; done
9999
sudo -u $BUILDER ./scripts/feeds install luci-app-passwall
100100
sudo -u $BUILDER make defconfig
101101
### enable all passwall packages
@@ -154,7 +154,7 @@ jobs:
154154
apt-get update
155155
apt install sudo -y
156156
sudo -u $BUILDER git clone https://github.com/jerrykuku/luci-theme-argon.git package/luci-theme-argon
157-
sudo -u $BUILDER ./scripts/feeds update -a
157+
while ! sudo -u $BUILDER ./scripts/feeds update -a; do echo "Try again"; done
158158
sudo -u $BUILDER make defconfig
159159
sudo -u $BUILDER make package/luci-theme-argon/compile V=s -j1
160160
mkdir -p $VOLUME_HOME/luci-theme-argon
@@ -190,7 +190,7 @@ jobs:
190190
apt-get update
191191
apt install sudo -y
192192
sudo -u $BUILDER git clone https://github.com/sirpdboy/luci-app-netdata package/luci-app-netdata
193-
sudo -u $BUILDER ./scripts/feeds update -a
193+
while ! sudo -u $BUILDER ./scripts/feeds update -a; do echo "Try again"; done
194194
sudo -u $BUILDER ./scripts/feeds install -a
195195
sudo -u $BUILDER make defconfig
196196
sudo -u $BUILDER make package/luci-app-netdata/compile V=s -j1

0 commit comments

Comments
 (0)