-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tribits-cdash-submit-87'
Build/Test Cases Summary Enabled Packages: Enabled all Packages 0) MPI_DEBUG => passed: passed=215,notpassed=0 (0.31 min) 1) SERIAL_RELEASE => passed: passed=215,notpassed=0 (0.28 min) Other local commits for this build/test group: bc66575, d8ca6ff, 50d8cdf
- Loading branch information
Showing
7 changed files
with
142 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
INCLUDE(SetDefaultAndFromEnv) | ||
|
||
SET(CTEST_NIGHTLY_START_TIME "04:00:00 UTC") # 10 PM MDT or 9 PM MST | ||
|
||
IF (NOT DEFINED CTEST_DROP_METHOD) | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_DROP_METHOD "http") | ||
ENDIF() | ||
|
||
IF (CTEST_DROP_METHOD STREQUAL "http") | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_DROP_SITE "my.cdash.org") | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_PROJECT_NAME "VERA") | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_DROP_LOCATION "/submit.php?project=TriBITS") | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_TRIGGER_SITE "") | ||
SET_DEFAULT_AND_FROM_ENV(CTEST_DROP_SITE_CDASH TRUE) | ||
ENDIF() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
SET(PROJECT_NAME TriBITS) | ||
SET(${PROJECT_NAME}_USES_PYTHON TRUE) | ||
SET(MPI_EXEC_DEFAULT_NUMPROCS 1) | ||
SET(${PROJECT_NAME}_SKIP_EXTRAREPOS_FILE TRUE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
TRIBITS_PACKAGE_DEFINE_DEPENDENCIES( | ||
TEST_OPTIONAL_TPLS MPI | ||
REGRESSION_EMAIL_LIST [email protected] | ||
REGRESSION_EMAIL_LIST [email protected] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# Set the locations of things for this project | ||
# | ||
|
||
SET(TRIBITS_PROJECT_ROOT "${CMAKE_CURRENT_LIST_DIR}/../../..") | ||
SET(TriBITS_TRIBITS_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../tribits") | ||
|
||
# | ||
# Include the TriBITS file to get other modules included | ||
# | ||
|
||
INCLUDE("${CMAKE_CURRENT_LIST_DIR}/../../../tribits/ctest_driver/TribitsCTestDriverCore.cmake") | ||
|
||
# | ||
# Set the options specific to this build case | ||
# | ||
|
||
SET(COMM_TYPE SERIAL) | ||
SET(BUILD_TYPE DEBUG) | ||
SET(BUILD_DIR_NAME ${COMM_TYPE}_${BUILD_TYPE}_TravisCI) | ||
#SET(CTEST_TEST_TIMEOUT 900) | ||
|
||
SET_DEFAULT_AND_FROM_ENV( CTEST_BUILD_FLAGS "-j1 -i" ) | ||
|
||
SET_DEFAULT_AND_FROM_ENV( CTEST_PARALLEL_LEVEL "1" ) | ||
|
||
SET( EXTRA_CONFIGURE_OPTIONS | ||
"-DBUILD_SHARED_LIBS:BOOL=ON" | ||
"-DCMAKE_BUILD_TYPE=DEBUG" | ||
"-DCMAKE_C_COMPILER=gcc" | ||
"-DCMAKE_CXX_COMPILER=g++" | ||
"-DCMAKE_Fortran_COMPILER=gfortran" | ||
"-DTriBITS_ENABLE_Fortran=ON" | ||
"-DTriBITS_HOSTNAME=travis-ci-server-linux" | ||
) | ||
|
||
SET(CTEST_TEST_TYPE Continuous) | ||
|
||
# | ||
# Run the CTest driver and submit to CDash | ||
# | ||
|
||
TRIBITS_CTEST_DRIVER() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters