Skip to content

Commit 57281ce

Browse files
Move CI over to OpenWrt 24.10.5 (#38)
* Move CI over to OpenWrt 24.10.5 * Use github.com/openwrt mirrors instead of git.openwrt.org The openwrt.org server is often under heavy load causing image builds to fail.
1 parent 1b4a3e8 commit 57281ce

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.containers/matter-openwrt-build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG OPENWRT_VERSION=24.10.4
1+
ARG OPENWRT_VERSION=24.10.5
22
FROM ghcr.io/openwrt/sdk:x86-generic-${OPENWRT_VERSION}
33
LABEL org.opencontainers.image.description="Pre-warmed OpenWrt SDK"
44

@@ -7,7 +7,7 @@ ARG SRC_PACKAGES="glib2 openssl ubus avahi"
77
ARG CFG_PACKAGES="glib2 libopenssl libubus libavahi-client"
88

99
RUN set -x && \
10-
grep -w 'base\|packages' feeds.conf.default > feeds.conf && \
10+
grep -w 'base\|packages' feeds.conf.default | sed -e 's|git.openwrt.org/[^/]*|github.com/openwrt|' >feeds.conf && \
1111
./scripts/feeds update -a && \
1212
./scripts/feeds install ${SRC_PACKAGES} && \
1313
echo "CONFIG_ALL=n" >.config && \

.github/workflows/build-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build
1818
uses: addnab/docker-run-action@v3
1919
with:
20-
image: ghcr.io/project-chip/matter-openwrt-build:24.10.4
20+
image: ghcr.io/project-chip/matter-openwrt-build:24.10.5
2121
options: --volume ${{ github.workspace }}:/workspace
2222
shell: bash
2323
run: |

0 commit comments

Comments
 (0)