From ee3974c4cd4d2baff7a1e34b6ef7faa251f1db27 Mon Sep 17 00:00:00 2001 From: Max Edwards Date: Wed, 17 Jun 2026 09:53:20 -0400 Subject: [PATCH 1/2] ci: updated docs to reflect removal of REPO_USE_WARP_RUNNERS flag --- ci/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/README.md b/ci/README.md index 0b6a34460ca1..33c623dc2afa 100644 --- a/ci/README.md +++ b/ci/README.md @@ -97,5 +97,5 @@ To configure the primary repository, follow these steps: When used in a fork the CI will run on GitHub's free hosted runners by default. In this case, GitHub's cache size limitations may cause caches to be frequently evicted and missed, but the workflows will run (slowly). -It is also possible to use your own WarpBuild Runners in your own fork with an appropriate patch to the `REPO_USE_WARP_RUNNERS` variable in ../.github/workflows/ci.yml +It is also possible to use your own WarpBuild Runners in your own fork by replacing the references to `bitcoin/bitcoin` in `../.github/workflows/ci.yml` with the name of your fork (e.g. `your-org/bitcoin`). NB that WarpBuild Runners only work at an organisation level, therefore in order to use your own WarpBuild Runners, *the fork must be within your own organisation*. From eea5292986524f1c78d0a0a3502728f2e1a9f3d4 Mon Sep 17 00:00:00 2001 From: Max Edwards Date: Mon, 2 Mar 2026 19:36:10 +0000 Subject: [PATCH 2/2] this test should always pass --- src/test/util_tests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp index e26234f8696b..19eaa1ab07a0 100644 --- a/src/test/util_tests.cpp +++ b/src/test/util_tests.cpp @@ -325,6 +325,7 @@ BOOST_AUTO_TEST_CASE(util_TrimString) BOOST_CHECK_EQUAL(TrimStringView(std::string("\x05\x04\x03\x02\x01\x00", 6)), std::string("\x05\x04\x03\x02\x01\x00", 6)); BOOST_CHECK_EQUAL(TrimString(std::string("\x05\x04\x03\x02\x01\x00", 6), std::string("\x05\x04\x03\x02\x01", 5)), std::string("\0", 1)); BOOST_CHECK_EQUAL(TrimStringView(std::string("\x05\x04\x03\x02\x01\x00", 6), std::string("\x05\x04\x03\x02\x01\x00", 6)), ""); + BOOST_CHECK_EQUAL(TrimString("silent_merge9"), "silent_merge9"); } BOOST_AUTO_TEST_CASE(util_ParseISO8601DateTime)