From fac932698f6539e9ac4a13df51194bcb60d5d933 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Fri, 27 Feb 2026 09:19:35 +0100 Subject: [PATCH 1/2] ci: Set TEST_RUNNER_PORT_MIN in test-each after cirrus runner switch --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c2e52d282c..9cae0987fec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,8 @@ jobs: name: 'test ancestor commits' needs: runners runs-on: ${{ needs.runners.outputs.provider == 'cirrus' && 'ghcr.io/cirruslabs/ubuntu-runner-amd64:24.04-md' || 'ubuntu-24.04' }} + env: + TEST_RUNNER_PORT_MIN: "14000" # Use a larger port, to avoid colliding with CIRRUS_CACHE_HOST port 12321. if: github.event_name == 'pull_request' && github.event.pull_request.commits != 1 timeout-minutes: 360 # Use maximum time, see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes. steps: From fa18be2f2ba19d5d35cb8a04fd4e1a7c4fc441ce Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Fri, 27 Feb 2026 09:22:12 +0100 Subject: [PATCH 2/2] test: Fix typo --- src/test/threadpool_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/threadpool_tests.cpp b/src/test/threadpool_tests.cpp index f5ae2223939..c5e3974f7a1 100644 --- a/src/test/threadpool_tests.cpp +++ b/src/test/threadpool_tests.cpp @@ -426,7 +426,7 @@ BOOST_AUTO_TEST_CASE(stop_active_wait_drains_queue) } BOOST_CHECK_EQUAL(threadPool.WorkQueueSize(), num_tasks); - // Delay release so Stop() drain all tasks from the calling thread + // Delay release so Stop() drains all tasks from the calling thread std::thread unblocker([&blocker, &threadPool]() { while (threadPool.WorkQueueSize() > 0) { std::this_thread::yield();