1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
# elastix Common Dashboard Script
# fork of ITK Common Dashboard Script at https://raw.githubusercontent.com/InsightSoftwareConsortium/ITK/dashboard/itk_common.cmake
#
# This script contains basic dashboard driver code common to all
# clients.
#
# Put this script in a directory such as "~/Dashboards/Scripts" or
# "c:/Dashboards/Scripts". Create a file next to this script, say
# 'my_dashboard.cmake', with code of the following form:
#
# # Client maintainer: me@mydomain.net
# set(CTEST_SITE "machine.site")
# set(CTEST_BUILD_NAME "Platform-Compiler")
# set(CTEST_BUILD_CONFIGURATION Debug)
# set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
# include(${CTEST_SCRIPT_DIRECTORY}/itk_common.cmake)
#
# Then run a scheduled task (cron job) with a command line such as
#
# ctest -S ~/Dashboards/Scripts/my_dashboard.cmake -V
#
# By default the source and build trees will be placed in the path
# "../MyTests/" relative to your script location.
#
# The following variables may be set before including this script
# to configure it:
#
# dashboard_model = Nightly | Experimental | Continuous
# dashboard_track = Optional track to submit dashboard to
# dashboard_loop = Repeat until N seconds have elapsed
# dashboard_root_name = Change name of "MyTests" directory
# dashboard_source_name = Name of source directory (ITK)
# dashboard_binary_name = Name of binary directory (ITK-build)
# dashboard_data_name = Name of ExternalData store (ExternalData)
# dashboard_cache = Initial CMakeCache.txt file content
# dashboard_do_cache = Always write CMakeCache.txt
# dashboard_do_coverage = True to enable coverage (ex: gcov)
# dashboard_do_memcheck = True to enable memcheck (ex: valgrind)
# dashboard_no_clean = True to skip build tree wipeout
# dashboard_no_update = True to skip source tree update
# CTEST_UPDATE_COMMAND = path to git command-line client
# CTEST_BUILD_FLAGS = build tool arguments (ex: -j2)
# CTEST_BUILD_TARGET = A specific target to be built (instead of all)
# CTEST_DASHBOARD_ROOT = Where to put source and build trees
# CTEST_TEST_CTEST = Whether to run long CTestTest* tests
# CTEST_TEST_TIMEOUT = Per-test timeout length
# CTEST_COVERAGE_ARGS = ctest_coverage command args
# CTEST_TEST_ARGS = ctest_test args (ex: PARALLEL_LEVEL 4)
# CTEST_MEMCHECK_ARGS = ctest_memcheck args (defaults to CTEST_TEST_ARGS)
# CMAKE_MAKE_PROGRAM = Path to "make" tool to use
#
# Options to configure builds from experimental git repository:
# dashboard_git_url = Custom git clone url
# dashboard_git_branch = Custom remote branch to track
# dashboard_git_crlf = Value of core.autocrlf for repository
#
# The following macros will be invoked before the corresponding
# step if they are defined:
#
# dashboard_hook_init = End of initialization, before loop
# dashboard_hook_start = Start of loop body, before ctest_start
# dashboard_hook_started = After ctest_start
# dashboard_hook_build = Before ctest_build
# dashboard_hook_test = Before ctest_test
# dashboard_hook_coverage = Before ctest_coverage
# dashboard_hook_memcheck = Before ctest_memcheck
# dashboard_hook_submit = Before ctest_submit
# dashboard_hook_end = End of loop body, after ctest_submit
#
# For Makefile generators the script may be executed from an
# environment already configured to use the desired compilers.
# Alternatively the environment may be set at the top of the script:
#
# set(ENV{CC} /path/to/cc) # C compiler
# set(ENV{CXX} /path/to/cxx) # C++ compiler
# set(ENV{FC} /path/to/fc) # Fortran compiler (optional)
# set(ENV{LD_LIBRARY_PATH} /path/to/vendor/lib) # (if necessary)
#==========================================================================
#
# Copyright Insight Software Consortium
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0.txt
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#==========================================================================*/
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
set(dashboard_user_home "$ENV{HOME}")
get_filename_component(dashboard_self_dir ${CMAKE_CURRENT_LIST_FILE} PATH)
# Select the top dashboard directory.
if(NOT DEFINED dashboard_root_name)
set(dashboard_root_name "Testing")
endif()
if(NOT DEFINED CTEST_DASHBOARD_ROOT)
get_filename_component(CTEST_DASHBOARD_ROOT "${CTEST_SCRIPT_DIRECTORY}/${dashboard_root_name}" ABSOLUTE)
endif()
# Select the model (Nightly, Experimental, Continuous).
if(NOT DEFINED dashboard_model)
set(dashboard_model Nightly)
endif()
if(NOT "${dashboard_model}" MATCHES "^(Nightly|Experimental|Continuous)$")
message(FATAL_ERROR "dashboard_model must be Nightly, Experimental, or Continuous")
endif()
# Default to a Debug build.
if(NOT DEFINED CTEST_CONFIGURATION_TYPE AND DEFINED CTEST_BUILD_CONFIGURATION)
set(CTEST_CONFIGURATION_TYPE ${CTEST_BUILD_CONFIGURATION})
endif()
if(NOT DEFINED CTEST_CONFIGURATION_TYPE)
set(CTEST_CONFIGURATION_TYPE Debug)
endif()
# Choose CTest reporting mode.
if(NOT DEFINED CTEST_USE_LAUNCHERS)
if(NOT "${CTEST_CMAKE_GENERATOR}" MATCHES "Make")
# Launchers work only with Makefile generators.
set(CTEST_USE_LAUNCHERS 0)
elseif(NOT DEFINED CTEST_USE_LAUNCHERS)
# The setting is ignored by CTest < 2.8 so we need no version test.
set(CTEST_USE_LAUNCHERS 1)
endif()
endif()
# Tells CTest to not do a git pull, but to still record what version of the software it's building and testing
# As explained by mail, by Zack Galbreath
set(CTEST_UPDATE_VERSION_ONLY 1)
# For CDash integration with GitHub: https://blog.kitware.com/cdash-integration-with-github
set(CTEST_CHANGE_ID $ENV{CHANGE_ID})
# Override the default maximum number of reported warnings and errors, using the same custom
# maximum numbers as https://github.com/SimpleITK/SimpleITK/blob/v2.3.1/CMake/CTestCustom.cmake.in
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 99)
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 999)
# Configure testing.
if(NOT DEFINED CTEST_TEST_CTEST)
set(CTEST_TEST_CTEST 1)
endif()
if(NOT CTEST_TEST_TIMEOUT)
set(CTEST_TEST_TIMEOUT 1500)
endif()
if(NOT DEFINED dashboard_git_crlf)
if(UNIX)
set(dashboard_git_crlf false)
else(UNIX)
set(dashboard_git_crlf true)
endif(UNIX)
endif()
# Look for a GIT command-line client.
if(NOT DEFINED CTEST_GIT_COMMAND)
find_program(CTEST_GIT_COMMAND NAMES git git.cmd)
endif()
if(NOT DEFINED CTEST_GIT_COMMAND)
message(FATAL_ERROR "No Git Found.")
endif()
# Select a data store.
if(NOT DEFINED ExternalData_OBJECT_STORES)
if(DEFINED "ENV{ExternalData_OBJECT_STORES}")
file(TO_CMAKE_PATH "$ENV{ExternalData_OBJECT_STORES}" ExternalData_OBJECT_STORES)
else()
if(DEFINED dashboard_data_name)
set(ExternalData_OBJECT_STORES ${CTEST_DASHBOARD_ROOT}/${dashboard_data_name})
else()
set(ExternalData_OBJECT_STORES ${CTEST_DASHBOARD_ROOT}/ExternalData)
endif()
endif()
endif()
if(NOT DEFINED CTEST_MEMCHECK_ARGS)
set(CTEST_MEMCHECK_ARGS ${CTEST_TEST_ARGS})
endif()
# Upstream non-head refs to treat like branches.
# These are updated by kwrobot.
set(dashboard_git_extra_branches
follow/master/nightly # updated nightly to master
)
#-----------------------------------------------------------------------------
# Send the main script as a note.
list(APPEND CTEST_NOTES_FILES
"${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}"
"${CMAKE_CURRENT_LIST_FILE}"
)
# Check for required variables.
foreach(req
CTEST_CMAKE_GENERATOR
CTEST_SITE
CTEST_BUILD_NAME
)
if(NOT DEFINED ${req})
message(FATAL_ERROR "The containing script must set ${req}")
endif()
endforeach(req)
# Print summary information.
foreach(v
CTEST_SITE
CTEST_BUILD_NAME
CTEST_SOURCE_DIRECTORY
CTEST_BINARY_DIRECTORY
ExternalData_OBJECT_STORES
CTEST_CMAKE_GENERATOR
CTEST_BUILD_CONFIGURATION
CTEST_BUILD_FLAGS
CTEST_GIT_COMMAND
CTEST_CHECKOUT_COMMAND
CTEST_SCRIPT_DIRECTORY
CTEST_USE_LAUNCHERS
CTEST_TEST_TIMEOUT
CTEST_COVERAGE_ARGS
CTEST_TEST_ARGS
CTEST_MEMCHECK_ARGS
)
set(vars "${vars} ${v}=[${${v}}]\n")
endforeach(v)
message("Dashboard script configuration:\n${vars}\n")
# Git does not update submodules by default so they appear as local
# modifications in the work tree. CTest 2.8.2 does this automatically.
# To support CTest 2.8.0 and 2.8.1 we wrap Git in a script.
if(${CMAKE_VERSION} VERSION_LESS 2.8.2)
if(UNIX)
configure_file(${dashboard_self_dir}/gitmod.sh.in
${CTEST_DASHBOARD_ROOT}/gitmod.sh
@ONLY)
set(CTEST_GIT_COMMAND ${CTEST_DASHBOARD_ROOT}/gitmod.sh)
else()
configure_file(${dashboard_self_dir}/gitmod.bat.in
${CTEST_DASHBOARD_ROOT}/gitmod.bat
@ONLY)
set(CTEST_GIT_COMMAND ${CTEST_DASHBOARD_ROOT}/gitmod.bat)
endif()
endif()
# Avoid non-ascii characters in tool output.
set(ENV{LC_ALL} C)
# Helper macro to write the initial cache.
macro(write_cache)
set(cache_build_type "")
set(cache_make_program "")
if(CTEST_CMAKE_GENERATOR MATCHES "Make")
set(cache_build_type CMAKE_BUILD_TYPE:STRING=${CTEST_BUILD_CONFIGURATION})
if(CMAKE_MAKE_PROGRAM)
set(cache_make_program CMAKE_MAKE_PROGRAM:FILEPATH=${CMAKE_MAKE_PROGRAM})
endif()
endif()
file(WRITE ${CTEST_BINARY_DIRECTORY}/CMakeCache.txt "
SITE:STRING=${CTEST_SITE}
BUILDNAME:STRING=${CTEST_BUILD_NAME}
CTEST_USE_LAUNCHERS:BOOL=${CTEST_USE_LAUNCHERS}
DART_TESTING_TIMEOUT:STRING=${CTEST_TEST_TIMEOUT}
ExternalData_OBJECT_STORES:STRING=${ExternalData_OBJECT_STORES}
MAXIMUM_NUMBER_OF_HEADERS:STRING=35
BUILD_EXAMPLES:BOOL=ON
ITK_USE_EIGEN_MPL2_ONLY:BOOL=ON
${cache_build_type}
${cache_make_program}
${dashboard_cache}
")
file(REMOVE_RECURSE "${CTEST_BINARY_DIRECTORY}/CMakeFiles")
endmacro()
# Start with a fresh build tree.
if(NOT EXISTS "${CTEST_BINARY_DIRECTORY}")
file(MAKE_DIRECTORY "${CTEST_BINARY_DIRECTORY}")
elseif(NOT "${CTEST_SOURCE_DIRECTORY}" STREQUAL "${CTEST_BINARY_DIRECTORY}"
AND NOT dashboard_no_clean)
message("Clearing build tree...")
ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY})
endif()
set(dashboard_continuous 0)
if("${dashboard_model}" STREQUAL "Continuous")
set(dashboard_continuous 1)
endif()
if(NOT DEFINED dashboard_loop)
if(dashboard_continuous)
set(dashboard_loop 43200)
else()
set(dashboard_loop 0)
endif()
endif()
# CTest 2.6 crashes with message() after ctest_test.
macro(safe_message)
if(NOT "${CMAKE_VERSION}" VERSION_LESS 2.8 OR NOT safe_message_skip)
message(${ARGN})
endif()
endmacro()
if(COMMAND dashboard_hook_init)
dashboard_hook_init()
endif()
set(dashboard_done 0)
while(NOT dashboard_done)
if(dashboard_loop)
set(START_TIME ${CTEST_ELAPSED_TIME})
endif()
set(ENV{HOME} "${dashboard_user_home}")
# Start a new submission.
if(COMMAND dashboard_hook_start)
dashboard_hook_start()
endif()
if(dashboard_track)
ctest_start(${dashboard_model} TRACK ${dashboard_track})
else()
ctest_start(${dashboard_model})
endif()
if(COMMAND dashboard_hook_started)
dashboard_hook_started()
endif()
# Always build if the tree is fresh.
set(dashboard_fresh 0)
if(NOT EXISTS "${CTEST_BINARY_DIRECTORY}/CMakeCache.txt"
OR "${dashboard_do_cache}")
set(dashboard_fresh 1)
safe_message("Writing initial dashboard cache...")
write_cache()
endif()
if(dashboard_fresh OR NOT dashboard_continuous OR count GREATER 0)
ctest_configure(RETURN_VALUE configure_return)
ctest_read_custom_files(${CTEST_BINARY_DIRECTORY})
if(COMMAND dashboard_hook_build)
dashboard_hook_build()
endif()
ctest_build(RETURN_VALUE build_return
NUMBER_ERRORS build_errors
NUMBER_WARNINGS build_warnings)
if(COMMAND dashboard_hook_test)
dashboard_hook_test()
endif()
ctest_test(${CTEST_TEST_ARGS} RETURN_VALUE test_return)
set(safe_message_skip 1) # Block furhter messages
if(dashboard_do_coverage)
if(COMMAND dashboard_hook_coverage)
dashboard_hook_coverage()
endif()
ctest_coverage(${CTEST_COVERAGE_ARGS})
endif()
if(dashboard_do_memcheck)
if(COMMAND dashboard_hook_memcheck)
dashboard_hook_memcheck()
endif()
ctest_memcheck(${CTEST_MEMCHECK_ARGS})
endif()
if(COMMAND dashboard_hook_submit)
dashboard_hook_submit()
endif()
if(NOT dashboard_no_submit)
ctest_submit()
endif()
if(COMMAND dashboard_hook_end)
dashboard_hook_end()
endif()
endif()
if(dashboard_loop)
# Delay until at least 5 minutes past START_TIME
ctest_sleep(${START_TIME} 300 ${CTEST_ELAPSED_TIME})
if(${CTEST_ELAPSED_TIME} GREATER ${dashboard_loop})
set(dashboard_done 1)
endif()
else()
# Not continuous, so we are done.
set(dashboard_done 1)
endif()
endwhile()
if(NOT ${configure_return} EQUAL 0 OR
NOT ${build_return} EQUAL 0 OR
NOT ${build_errors} EQUAL 0 OR
NOT ${build_warnings} EQUAL 0 OR
NOT ${test_return} EQUAL 0)
message(FATAL_ERROR
"Build did not complete without warnings, errors, or failures.")
endif()
|