<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildbot, branch v27</title>
<subtitle>LEDE buildbot configuration</subtitle>
<id>https://git-03.infra.openwrt.org/buildbot/atom?h=v27</id>
<link rel='self' href='https://git-03.infra.openwrt.org/buildbot/atom?h=v27'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/'/>
<updated>2026-01-13T16:49:33Z</updated>
<entry>
<title>ci: fix missing tag on containers on git tag pushes</title>
<updated>2026-01-13T16:49:33Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-13T16:35:09Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=38f03c85e96155168dcbde5dedb3f83119511fe1'/>
<id>urn:sha1:38f03c85e96155168dcbde5dedb3f83119511fe1</id>
<content type='text'>
Non semver tags like v26 were not included in metadata output, so image
pushes only produced sha- tags. Add tag reference metadata so tag pushes
publish a matching container tag.

  ##[warning]v26 is not a valid semver. More info: https://semver.org/
  ##[group]Docker tags
  ghcr.io/openwrt/buildbot/buildmaster-v3.11.8:sha-f2c82f2

Fixes: 93918cc2e225 ("ci: add support for testing PR containers")
Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: remove cleanup-pr-containers workflow</title>
<updated>2026-01-13T16:48:57Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-13T16:47:13Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=64696d96ed6c664b25bfc07fad4064397033868d'/>
<id>urn:sha1:64696d96ed6c664b25bfc07fad4064397033868d</id>
<content type='text'>
It needs a bit more time to debug this properly.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>phase2: add support for overriding feeds host</title>
<updated>2026-01-12T21:28:00Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T08:43:43Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=f2c82f2232b2ebdf1e643b38b406e41923181a72'/>
<id>urn:sha1:f2c82f2232b2ebdf1e643b38b406e41923181a72</id>
<content type='text'>
Port the feeds_host_override functionality from phase1 to phase2,
allowing phase2 builds to use alternate feed hosts.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>phase1: simplify feeds host override with SDK cleanup</title>
<updated>2026-01-12T21:27:58Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T06:48:41Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=4bace77250fc67c776f0cd3aa2d6ce4b5ce021bd'/>
<id>urn:sha1:4bace77250fc67c776f0cd3aa2d6ce4b5ce021bd</id>
<content type='text'>
Write to feeds.conf instead of modifying feeds.conf.default in place as
the `feeds update` checks feeds.conf first, so no backup/restore dance
is needed.

Fixes: 057e8adc9d49 ("phase1: add support for overriding feeds host")
Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>phase1: apply feeds_host_override to main repository URL</title>
<updated>2026-01-12T21:27:57Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-10T19:30:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=78343984a6699d6dcaf5e561c6e72887fee5bf3b'/>
<id>urn:sha1:78343984a6699d6dcaf5e561c6e72887fee5bf3b</id>
<content type='text'>
When feeds_host_override is configured, also apply it to the main
OpenWrt repository URL (repo_url). This fixes git fetch 503 errors
when git.openwrt.org is overloaded by redirecting to GitHub mirror.

  git fetch -f -t https://git.openwrt.org/openwrt/openwrt.git main --progress
  error: RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
  fatal: the remote end hung up unexpectedly

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: fix workflow_dispatch on PRs by using local context for docker buildx</title>
<updated>2026-01-11T21:56:56Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T21:51:05Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=f92acc64dc01107a72505c2e6a9a8104f36baeca'/>
<id>urn:sha1:f92acc64dc01107a72505c2e6a9a8104f36baeca</id>
<content type='text'>
Without explicit context, docker/build-push-action defaults to fetching
from the GitHub repository using github.sha as the ref. For workflow_dispatch
events, github.sha points to the default branch (main), not the checked-out
PR ref. This caused PR container builds to contain main branch code instead
of the PR changes.

With `context: .` makes Docker build uses the locally checked-out files
from refs/pull/{N}/merge.

The issue was identified by inspecting the workflow run logs which showed:

  docker buildx build ... https://github.com/openwrt/buildbot.git#93918cc2e2257ae8838166d2baad30617295df4e

The #93918cc2... ref at the end is the main branch SHA, not the PR merge
commit. This is the default behavior when context is not specified - the
action uses ${{ github.server_url }}/${{ github.repository }}.git#${{ github.sha }}

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: avoid branch tags on workflow_dispatch</title>
<updated>2026-01-11T20:52:57Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T20:51:36Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=9470e52e6c181f223cd263bd3581d294ab4b2c35'/>
<id>urn:sha1:9470e52e6c181f223cd263bd3581d294ab4b2c35</id>
<content type='text'>
Currently workflow_dispatch pushes branch tags, so lets fix it by
disabling branch tagging for dispatch runs.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: rename OPENWRT_VERSION to BUILDBOT_CONFIG_SHA</title>
<updated>2026-01-11T20:52:45Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T14:13:12Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=61c35ecb418124b342da8db31b8d95e69bb30613'/>
<id>urn:sha1:61c35ecb418124b342da8db31b8d95e69bb30613</id>
<content type='text'>
The old name was misleading as it suggested an OpenWrt release version.
The variable holds the git SHA of this buildbot config repository, used
for quick URL links to the configuration commit.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: add container version tag to BUILDWORKER_DESCRIPTION</title>
<updated>2026-01-11T20:52:36Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T13:26:09Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=5cc2a73331ccd72b5d7acf8581cdc2a5fab06863'/>
<id>urn:sha1:5cc2a73331ccd72b5d7acf8581cdc2a5fab06863</id>
<content type='text'>
Add CONTAINER_TAG build argument to indicate whether the container
was built from a tag (v25), PR (pr-73), or branch (main). This makes
it easier to identify which version of the container is running.

While at it, drop Docker prefix to make it shorter.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>ci: centralize BUILDBOT_VERSION in a shared file</title>
<updated>2026-01-11T20:52:12Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2026-01-11T09:34:21Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/buildbot/commit/?id=b15537c62b8d951181e88fb867f1167d0525424a'/>
<id>urn:sha1:b15537c62b8d951181e88fb867f1167d0525424a</id>
<content type='text'>
Move the buildbot version from duplicate workflow env blocks to a single
.github/buildbot-version file.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
</feed>
