From 086894098ecc40172abd15244803c426efda1d19 Mon Sep 17 00:00:00 2001 From: will Date: Wed, 6 May 2026 10:06:11 +0100 Subject: [PATCH] cmake: add CTestConfig.cmake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a `CTestConfig.cmake` file with the CDash submission URL for Bitcoin Core. This lets developers use CTest’s built-in dashboard support to upload local configure, build, and test results to CDash. With this a developer can use their own CTest dashboard script or manual `ctest` workflow and upload results to a collection point. This is useful for sharing reproducible build/test results from local machines, CI experiments, and platform-specific debugging. CDash keeps the configure output, build warnings/errors, and test results grouped under a single dashboard submission, making it easier to inspect failures and compare behavior across environments. The file only defines the CDash upload location. It does not change the default build or test behavior. --- CTestConfig.cmake | 1 + 1 file changed, 1 insertion(+) create mode 100644 CTestConfig.cmake diff --git a/CTestConfig.cmake b/CTestConfig.cmake new file mode 100644 index 00000000000..0eca9bf13a0 --- /dev/null +++ b/CTestConfig.cmake @@ -0,0 +1 @@ +set(CTEST_SUBMIT_URL "https://my.cdash.org/submit.php?project=bitcoin-core")