diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt index 42813c899..46847621d 100644 --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -1,29 +1,30 @@ option(ENABLE_SOURCE_CONTROL_TOOLS_TESTS "Enable testing of the source control tools" OFF) if(ENABLE_SOURCE_CONTROL_TOOLS_TESTS) add_subdirectory(source-control-tools) endif() +add_subdirectory(buildbot) add_subdirectory(devtools) include(PackageHelper) exclude_from_source_package( # Subdirectories "aur/" "debian/" "gitian/" "gitian-builder/" "gitian-descriptors/" "qos/" "seeds/" "teamcity/" "testgen/" # FIXME Can be packaged once it gets updated to work with Bitcoin ABC "verifybinaries/" "zmq/" # Files "bitcoin-qt.pro" "gitian-build.py" "README.md" "valgrind.supp" ) diff --git a/contrib/buildbot/CMakeLists.txt b/contrib/buildbot/CMakeLists.txt new file mode 100644 index 000000000..2e57b04b6 --- /dev/null +++ b/contrib/buildbot/CMakeLists.txt @@ -0,0 +1,5 @@ +add_custom_target(check-buildbot + COMMENT "Running the buildbot tests" + COMMAND "${Python_EXECUTABLE}" -m pytest + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/test" +)