From b30658029c64d100a805fc373a31e9475b10f629 Mon Sep 17 00:00:00 2001 From: chrysn Date: Wed, 4 Jun 2025 10:32:07 +0200 Subject: [PATCH 1/2] Bump tag versions --- .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 16264a05..f09c0e6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,8 +37,8 @@ jobs: name: Build and Test runs-on: ubuntu-latest env: - RIOT_BRANCH: '2025.01-branch' - VERSION_TAG: '2025.04' + RIOT_BRANCH: '2025.04-branch' + VERSION_TAG: '2025.07' DOCKER_REGISTRY: "${{ secrets.DOCKER_REGISTRY || 'local' }}" steps: From 107932babb3652eba58069701df0c3985cb380c6 Mon Sep 17 00:00:00 2001 From: chrysn Date: Wed, 4 Jun 2025 10:04:38 +0200 Subject: [PATCH 2/2] tests: Run on native32 as well Trouble with [21531] indicates that running tests on native is insufficient to catch native32 trouble; this should catch that kind of issue earlier. [21531]: https://github.com/RIOT-OS/RIOT/pull/21531 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f09c0e6e..f9dcd24b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,7 +102,7 @@ jobs: env: BUILD_IN_DOCKER: 1 DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest - BOARDS: "arduino-uno esp32-wroom-32 hifive1b msb-430h native samr21-xpro" + BOARDS: "arduino-uno esp32-wroom-32 hifive1b msb-430h native32 native64 samr21-xpro" - name: GNU microbit qemu test run: > @@ -127,7 +127,7 @@ jobs: TOOLCHAIN: llvm BUILD_IN_DOCKER: 1 DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest - BOARDS: "native samr21-xpro" + BOARDS: "native32 native64 samr21-xpro" - name: Rust build test run: | @@ -143,7 +143,7 @@ jobs: # Not all of them are actually available; still using the "canonical" # list of representative boards above to keep this stable whil Rust # support expands - BOARDS: "arduino-uno esp32-wroom-32 hifive1b msb-430h native samr21-xpro" + BOARDS: "arduino-uno esp32-wroom-32 hifive1b msb-430h native32 native64 samr21-xpro" - name: C++ build test run: | @@ -151,7 +151,7 @@ jobs: env: BUILD_IN_DOCKER: 1 DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest - BOARDS: "esp32-wroom-32 hifive1b native samr21-xpro" + BOARDS: "esp32-wroom-32 hifive1b native32 native64 samr21-xpro" - name: laze test run: |