From cc059dfd6318a2957be09da04c73c1173ec7bc5d Mon Sep 17 00:00:00 2001 From: crasbe Date: Sat, 15 Aug 2026 15:51:40 +0200 Subject: [PATCH 1/2] .github/workflows: build master branch of RIOT, bump container version --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be0897bb..e07296bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,8 +55,8 @@ jobs: runs-on: ubuntu-latest needs: [check-secret] env: - RIOT_BRANCH: '2026.04-branch' - VERSION_TAG: '2026.07' + RIOT_BRANCH: 'master' + VERSION_TAG: '2026.10' DOCKER_REGISTRY: "${{ secrets.DOCKER_REGISTRY || 'local' }}" steps: From edd234886eef2f956ec120d3664e17791dc286a2 Mon Sep 17 00:00:00 2001 From: crasbe Date: Tue, 18 Aug 2026 15:18:34 +0200 Subject: [PATCH 2/2] README: add notes about versioning --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 55b9c37d..793dbf73 100644 --- a/README.md +++ b/README.md @@ -76,3 +76,14 @@ or test of your liking: ```sh BUILD_IN_DOCKER=1 DOCKER_IMAGE=f610ef8e4bbd BOARD=nrf52840dk make -C tests/sys/shell ``` + +## Notes for Release Managers + +The version in `.github/workflows/build.yml` has to be advanced on every RIOT +release and be ahead of the RIOT release. For example, when RIOT 2026.07 was +released, the version for the docker container has to be advanced to 2026.10. + +By advancing the version, the image version matching the RIOT release version +on the Docker Hub will not be changed anymore by changes to the container +repository and therefore will not cause issues with the Buildsystem Sanity +Check of RIOT.