[Cmake-commits] CMake branch, dashboard, updated. 182b93635464ee35100522dec811abb76b55c742
Brad King
brad.king at kitware.com
Thu Sep 19 11:23:08 EDT 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, dashboard has been updated
via 182b93635464ee35100522dec811abb76b55c742 (commit)
from 0dd775edc596c4baf09929845d158dfab11f51e9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=182b93635464ee35100522dec811abb76b55c742
commit 182b93635464ee35100522dec811abb76b55c742
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 19 11:20:19 2013 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Thu Sep 19 11:20:22 2013 -0400
cmake_common: Add hook after ctest_start
Add a "dashboard_hook_started" hook after the ctest_start call.
This gives scripts a chance to override the submission information
that ctest_start loaded from the project's CTestConfig.cmake file.
diff --git a/cmake_common.cmake b/cmake_common.cmake
index 6552e1d..576db9a 100644
--- a/cmake_common.cmake
+++ b/cmake_common.cmake
@@ -347,6 +347,9 @@ while(NOT dashboard_done)
dashboard_hook_start()
endif()
ctest_start(${dashboard_model})
+ if(COMMAND dashboard_hook_started)
+ dashboard_hook_started()
+ endif()
# Always build if the tree is fresh.
set(dashboard_fresh 0)
-----------------------------------------------------------------------
Summary of changes:
cmake_common.cmake | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list