Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yijin mao
VTK
Commits
7040d9e4
Commit
7040d9e4
authored
12 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
Add vtk_common dashboard script
parents
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vtk_common.cmake
+498
-0
498 additions, 0 deletions
vtk_common.cmake
with
498 additions
and
0 deletions
vtk_common.cmake
0 → 100644
+
498
−
0
View file @
7040d9e4
# VTK Common Dashboard Script
#
# 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_CONFIGURATION_TYPE Debug)
# set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
# include(${CTEST_SCRIPT_DIRECTORY}/vtk_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
# "../My Tests/" relative to your script location.
#
# The following variables may be set before including this script
# to configure it:
#
# dashboard_model = Nightly | Experimental | Continuous
# dashboard_disable_loop = For continuous dashboards, disable loop.
# dashboard_root_name = Change name of "My Tests" directory
# dashboard_source_name = Name of source directory (VTK)
# dashboard_binary_name = Name of binary directory (VTK-build)
# dashboard_data_name = Name of data directory (VTKData)
# dashboard_large_data_name = Name of data directory (VTKLargeData)
# dashboard_cache = Initial CMakeCache.txt file content
# dashboard_cvs_tag = CVS tag to checkout (ex: VTK-5-6)
# dashboard_do_coverage = True to enable coverage (ex: gcov)
# dashboard_do_memcheck = True to enable memcheck (ex: valgrind)
# CTEST_UPDATE_COMMAND = path to svn command-line client
# CTEST_BUILD_FLAGS = build tool arguments (ex: -j2)
# 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_TEST_ARGS = ctest_test args (ex: PARALLEL_LEVEL 4)
# CMAKE_MAKE_PROGRAM = Path to "make" tool to use
# VTK_DATA_ROOT = Where to put data tree
# VTK_LARGE_DATA_ROOT = Where to put large data tree
#
# 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
#
# 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 2010-2012 Kitware, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# * Neither the names of Kitware, Inc., the Insight Software Consortium,
# nor the names of their contributors may be used to endorse or promote
# products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#=============================================================================
cmake_minimum_required
(
VERSION 2.8 FATAL_ERROR
)
set
(
CTEST_PROJECT_NAME VTK
)
set
(
dashboard_user_home
"$ENV{HOME}"
)
# Select the top dashboard directory.
if
(
NOT DEFINED dashboard_root_name
)
set
(
dashboard_root_name
"My Tests"
)
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
"
${
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
()
# 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
()
# need to handle VTKData
# git://vtk.org/VTKData.git
# Select Git source to use.
if
(
NOT DEFINED dashboard_git_url
)
set
(
dashboard_git_url
"git://vtk.org/VTK.git"
)
endif
()
# Select Git source to use.
if
(
NOT DEFINED dashboard_git_data_url
)
set
(
dashboard_git_data_url
"git://vtk.org/VTKData.git"
)
endif
()
# Select Git source to use.
if
(
NOT DEFINED dashboard_git_large_data_url
)
set
(
dashboard_git_large_data_url
"git://vtk.org/VTKLargeData.git"
)
endif
()
if
(
NOT DEFINED dashboard_git_branch
)
if
(
"
${
dashboard_model
}
"
STREQUAL
"Nightly"
)
set
(
dashboard_git_branch nightly-master
)
else
()
set
(
dashboard_git_branch master
)
endif
()
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.exe git.cmd
)
endif
()
if
(
NOT EXISTS
${
CTEST_GIT_COMMAND
}
)
message
(
FATAL_ERROR
"No Git Found."
)
endif
()
# Select a source directory name.
if
(
NOT DEFINED CTEST_SOURCE_DIRECTORY
)
if
(
DEFINED dashboard_source_name
)
set
(
CTEST_SOURCE_DIRECTORY
${
CTEST_DASHBOARD_ROOT
}
/
${
dashboard_source_name
}
)
else
()
set
(
CTEST_SOURCE_DIRECTORY
${
CTEST_DASHBOARD_ROOT
}
/VTK
)
endif
()
endif
()
# Select a build directory name.
if
(
NOT DEFINED CTEST_BINARY_DIRECTORY
)
if
(
DEFINED dashboard_binary_name
)
set
(
CTEST_BINARY_DIRECTORY
${
CTEST_DASHBOARD_ROOT
}
/
${
dashboard_binary_name
}
)
else
()
set
(
CTEST_BINARY_DIRECTORY
${
CTEST_SOURCE_DIRECTORY
}
-build
)
endif
()
endif
()
# Select a data directory name.
# don't do this until VTKData is actually a submodule.
#set(VTK_DATA_ROOT ${CTEST_SOURCE_DIRECTORY}/VTKData)
if
(
NOT DEFINED VTK_DATA_ROOT
)
if
(
DEFINED dashboard_data_name
)
set
(
VTK_DATA_ROOT
${
CTEST_DASHBOARD_ROOT
}
/
${
dashboard_data_name
}
)
else
()
set
(
VTK_DATA_ROOT
${
CTEST_SOURCE_DIRECTORY
}
Data
)
endif
()
endif
()
# Select a data directory name.
# don't do this until VTKLargeData is actually a submodule.
# set(VTK_LARGE_DATA_ROOT ${CTEST_SOURCE_DIRECTORY}/VTKLargeData)
if
(
NOT DEFINED VTK_LARGE_DATA_ROOT
)
if
(
DEFINED dashboard_data_name
)
set
(
VTK_LARGE_DATA_ROOT
${
CTEST_DASHBOARD_ROOT
}
/
${
dashboard_large_data_name
}
)
else
()
set
(
VTK_LARGE_DATA_ROOT
${
CTEST_SOURCE_DIRECTORY
}
LargeData
)
endif
()
endif
()
# Delete source tree if it is incompatible with current VCS.
if
(
EXISTS
${
CTEST_SOURCE_DIRECTORY
}
)
if
(
CTEST_GIT_COMMAND
)
if
(
NOT EXISTS
"
${
CTEST_SOURCE_DIRECTORY
}
/.git"
)
set
(
vcs_refresh
"because it is not managed by git."
)
endif
()
endif
()
if
(
vcs_refresh AND
"
${
CTEST_SOURCE_DIRECTORY
}
"
MATCHES
"/VTK[^/]*"
)
message
(
"Deleting source tree
\n
${
CTEST_SOURCE_DIRECTORY
}
\n
${
vcs_refresh
}
"
)
file
(
REMOVE_RECURSE
"
${
CTEST_SOURCE_DIRECTORY
}
"
)
endif
()
endif
()
# Delete data tree if it is incompatible with current VCS.
if
(
EXISTS
${
VTK_DATA_ROOT
}
)
if
(
CTEST_GIT_COMMAND
)
if
(
NOT EXISTS
"
${
VTK_DATA_ROOT
}
/.git"
)
set
(
vcs_refresh
"because it is not managed by git."
)
endif
()
endif
()
if
(
vcs_refresh AND
"
${
VTK_DATA_ROOT
}
"
MATCHES
"/VTKData[^/]*"
)
message
(
"Deleting VTKData tree
\n
${
CTEST_SOURCE_DIRECTORY
}
\n
${
vcs_refresh
}
"
)
file
(
REMOVE_RECURSE
"
${
VTK_DATA_ROOT
}
"
)
endif
()
endif
()
if
(
NOT EXISTS
"
${
VTK_DATA_ROOT
}
"
)
get_filename_component
(
_name
"
${
VTK_DATA_ROOT
}
"
NAME
)
execute_process
(
COMMAND
"
${
CTEST_GIT_COMMAND
}
"
clone
"
${
dashboard_git_data_url
}
"
"
${
VTK_DATA_ROOT
}
"
)
endif
()
# Delete large data tree if it is incompatible with current VCS.
if
(
EXISTS
${
VTK_LARGE_DATA_ROOT
}
)
if
(
CTEST_GIT_COMMAND
)
if
(
NOT EXISTS
"
${
VTK_LARGE_DATA_ROOT
}
/.git"
)
set
(
vcs_refresh
"because it is not managed by git."
)
endif
()
endif
()
if
(
vcs_refresh AND
"
${
VTK_LARGE_DATA_ROOT
}
"
MATCHES
"/VTKLargeData[^/]*"
)
message
(
"Deleting VTKLargeData tree
\n
${
CTEST_SOURCE_DIRECTORY
}
\n
${
vcs_refresh
}
"
)
file
(
REMOVE_RECURSE
"
${
VTK_LARGE_DATA_ROOT
}
"
)
endif
()
endif
()
if
(
NOT EXISTS
"
${
VTK_LARGE_DATA_ROOT
}
"
)
get_filename_component
(
_name
"
${
VTK_LARGE_DATA_ROOT
}
"
NAME
)
execute_process
(
COMMAND
"
${
CTEST_GIT_COMMAND
}
"
clone
"
${
dashboard_git_large_data_url
}
"
"
${
VTK_LARGE_DATA_ROOT
}
"
)
endif
()
# Support initial checkout if necessary.
if
(
NOT EXISTS
"
${
CTEST_SOURCE_DIRECTORY
}
"
AND NOT DEFINED CTEST_CHECKOUT_COMMAND
)
get_filename_component
(
_name
"
${
CTEST_SOURCE_DIRECTORY
}
"
NAME
)
if
(
CTEST_GIT_COMMAND
)
execute_process
(
COMMAND
${
CTEST_GIT_COMMAND
}
--version OUTPUT_VARIABLE output
)
string
(
REGEX MATCH
"[0-9]+
\\
.[0-9]+
\\
.[0-9]+(
\\
.[0-9]+(
\\
.g[0-9a-f]+)?)?"
GIT_VERSION
"
${
output
}
"
)
if
(
NOT
"
${
GIT_VERSION
}
"
VERSION_LESS
"1.6.5"
)
# Have "git clone -b <branch>" option.
set
(
git_branch_new
"-b
${
dashboard_git_branch
}
"
)
set
(
git_branch_old
)
else
()
# No "git clone -b <branch>" option.
set
(
git_branch_new
)
set
(
git_branch_old
"-b
${
dashboard_git_branch
}
origin/
${
dashboard_git_branch
}
"
)
endif
()
# Generate an initial checkout script.
set
(
ctest_checkout_script
${
CTEST_DASHBOARD_ROOT
}
/
${
_name
}
-init.cmake
)
file
(
WRITE
${
ctest_checkout_script
}
"# git repo init script for
${
_name
}
execute_process(
COMMAND
\"
${
CTEST_GIT_COMMAND
}
\"
clone -n
${
git_branch_new
}
\"
${
dashboard_git_url
}
\"
\"
${
CTEST_SOURCE_DIRECTORY
}
\"
)
if(EXISTS
\"
${
CTEST_SOURCE_DIRECTORY
}
/.git
\"
)
execute_process(
COMMAND
\"
${
CTEST_GIT_COMMAND
}
\"
config core.autocrlf
${
dashboard_git_crlf
}
WORKING_DIRECTORY
\"
${
CTEST_SOURCE_DIRECTORY
}
\"
)
execute_process(
COMMAND
\"
${
CTEST_GIT_COMMAND
}
\"
checkout
${
git_branch_old
}
WORKING_DIRECTORY
\"
${
CTEST_SOURCE_DIRECTORY
}
\"
)
execute_process(
COMMAND
\"
${
CTEST_GIT_COMMAND
}
\"
submodule init
WORKING_DIRECTORY
\"
${
CTEST_SOURCE_DIRECTORY
}
\"
)
execute_process(
COMMAND
\"
${
CTEST_GIT_COMMAND
}
\"
submodule update --
WORKING_DIRECTORY
\"
${
CTEST_SOURCE_DIRECTORY
}
\"
)
endif()
"
)
set
(
CTEST_CHECKOUT_COMMAND
"
\"
${
CMAKE_COMMAND
}
\"
-P
\"
${
ctest_checkout_script
}
\"
"
)
endif
()
# CTest delayed initialization is broken, so we put the
# CTestConfig.cmake info here.
set
(
CTEST_NIGHTLY_START_TIME
"01:00:00 UTC"
)
set
(
CTEST_DROP_METHOD
"http"
)
set
(
CTEST_DROP_SITE
"www.cdash.org"
)
set
(
CTEST_DROP_LOCATION
"/CDash/submit.php?project=VTK"
)
set
(
CTEST_DROP_SITE_CDASH TRUE
)
endif
()
#-----------------------------------------------------------------------------
# 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
CTEST_CMAKE_GENERATOR
CTEST_CONFIGURATION_TYPE
CTEST_CVS_COMMAND
CTEST_GIT_COMMAND
CTEST_CHECKOUT_COMMAND
CTEST_SCRIPT_DIRECTORY
CTEST_USE_LAUNCHERS
VTK_DATA_ROOT
VTK_LARGE_DATA_ROOT
)
set
(
vars
"
${
vars
}
${
v
}
=[
${${
v
}}
]
\n
"
)
endforeach
(
v
)
message
(
"Dashboard script configuration:
\n
${
vars
}
\n
"
)
# 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_CONFIGURATION_TYPE
}
)
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
}
VTK_DATA_ROOT:PATH=
${
VTK_DATA_ROOT
}
VTK_LARGE_DATA_ROOT:PATH=
${
VTK_LARGE_DATA_ROOT
}
${
cache_build_type
}
${
cache_make_program
}
${
dashboard_cache
}
"
)
endmacro
(
write_cache
)
# Start with a fresh build tree.
file
(
MAKE_DIRECTORY
"
${
CTEST_BINARY_DIRECTORY
}
"
)
if
(
NOT
"
${
CTEST_SOURCE_DIRECTORY
}
"
STREQUAL
"
${
CTEST_BINARY_DIRECTORY
}
"
)
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
()
# 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_continuous
)
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
()
ctest_start
(
${
dashboard_model
}
)
# Always build if the tree is fresh.
set
(
dashboard_fresh 0
)
if
(
NOT EXISTS
"
${
CTEST_BINARY_DIRECTORY
}
/CMakeCache.txt"
)
set
(
dashboard_fresh 1
)
safe_message
(
"Starting fresh build..."
)
write_cache
()
endif
()
# VTKData is not a submodule at this time, so use ctest_update
if
(
DEFINED VTK_DATA_ROOT
)
ctest_update
(
SOURCE
"
${
VTK_DATA_ROOT
}
"
)
endif
()
if
(
DEFINED VTK_LARGE_DATA_ROOT
)
ctest_update
(
SOURCE
"
${
VTK_LARGE_DATA_ROOT
}
"
)
endif
()
# Look for updates.
ctest_update
(
RETURN_VALUE count
)
set
(
CTEST_CHECKOUT_COMMAND
)
# checkout on first iteration only
safe_message
(
"Found
${
count
}
changed files"
)
if
(
dashboard_fresh OR NOT dashboard_continuous OR count GREATER 0
)
ctest_configure
()
ctest_submit
(
PARTS Update Configure Notes
)
ctest_read_custom_files
(
${
CTEST_BINARY_DIRECTORY
}
)
if
(
COMMAND dashboard_hook_build
)
dashboard_hook_build
()
endif
()
ctest_build
(
APPEND
)
ctest_submit
(
PARTS Build
)
if
(
COMMAND dashboard_hook_test
)
dashboard_hook_test
()
endif
()
ctest_test
(
${
CTEST_TEST_ARGS
}
APPEND
)
ctest_submit
(
PARTS Test
)
set
(
safe_message_skip 1
)
# Block furhter messages
if
(
dashboard_do_coverage
)
ctest_coverage
()
ctest_submit
(
PARTS Coverage
)
endif
()
if
(
dashboard_do_memcheck
)
ctest_memcheck
(
${
CTEST_TEST_ARGS
}
)
ctest_submit
(
PARTS MemCheck
)
endif
()
if
(
COMMAND dashboard_hook_submit
)
dashboard_hook_submit
()
endif
()
if
(
COMMAND dashboard_hook_end
)
dashboard_hook_end
()
endif
()
endif
()
if
(
dashboard_continuous AND NOT dashboard_disable_loop
)
# Delay until at least 5 minutes past START_TIME
ctest_sleep
(
${
START_TIME
}
300
${
CTEST_ELAPSED_TIME
}
)
if
(
${
CTEST_ELAPSED_TIME
}
GREATER 57600
)
set
(
dashboard_done 1
)
endif
()
else
()
# Not continuous, so we are done.
set
(
dashboard_done 1
)
endif
()
endwhile
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment