cmake: add CTestConfig.cmake

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.
This commit is contained in:
will
2026-05-06 10:06:11 +01:00
parent aa1d0d7cd7
commit 086894098e

1
CTestConfig.cmake Normal file
View File

@@ -0,0 +1 @@
set(CTEST_SUBMIT_URL "https://my.cdash.org/submit.php?project=bitcoin-core")