From 379ad39faf1cc263e9f17240e7f61a8ea75f6d1a Mon Sep 17 00:00:00 2001 From: crasbe Date: Wed, 22 Oct 2025 13:40:37 +0200 Subject: [PATCH 1/2] Dockerfile: set folder for dlcache --- murdock-worker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/murdock-worker/Dockerfile b/murdock-worker/Dockerfile index 3620b79d..02ef6aaf 100644 --- a/murdock-worker/Dockerfile +++ b/murdock-worker/Dockerfile @@ -44,6 +44,9 @@ COPY murdock_slave.sh /usr/bin/murdock_slave # create cache folder RUN mkdir -m777 /cache +# set cache folder for Download Cache +ENV DLCACHE_DIR /cache/.dlcache + ENTRYPOINT ["/bin/bash", "/run.sh"] # By default, run a shell when no command is specified on the docker command line From 993ae9c99d3279da1b1f4c1bd1117745b0627939 Mon Sep 17 00:00:00 2001 From: crasbe Date: Thu, 23 Oct 2025 10:06:54 +0200 Subject: [PATCH 2/2] ci: bump RIOT_BRANCH and VERSION_TAG --- .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 509d1517..a5aee154 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.04-branch' - VERSION_TAG: '2025.07' + RIOT_BRANCH: '2025.07-branch' + VERSION_TAG: '2025.10' DOCKER_REGISTRY: "${{ secrets.DOCKER_REGISTRY || 'local' }}" steps: