-
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 'master' into tril-13133-TriBITS-Update-License-and-Copy…
…right-2
- Loading branch information
Showing
50 changed files
with
180 additions
and
74 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
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,72 @@ | ||
#!/bin/bash | ||
|
||
if [ -d CMakeFiles ] ; then | ||
rm -r CMakeFiles | ||
fi | ||
if [ -e CMakeCache.txt ] ; then | ||
rm CMakeCache.txt | ||
fi | ||
|
||
if [ "$TRIBITS_BASE_DIR" == "" ] ; then | ||
_ABS_FILE_PATH=`readlink -f $0` | ||
_SCRIPT_DIR=`dirname $_ABS_FILE_PATH` | ||
TRIBITS_BASE_DIR=$_SCRIPT_DIR/../.. | ||
fi | ||
|
||
tribits_install_test_dir=/tmp/rabartl/tribits_install_tests | ||
if [ -d "${tribits_install_test_dir}" ] ; then | ||
echo "Makedir ${tribits_install_test_dir}" | ||
mkdir ${tribits_install_test_dir} | ||
fi | ||
|
||
${TRIBITS_BASE_DIR}/dev_testing/generic/do-configure-mpi-debug \ | ||
-DDART_TESTING_TIMEOUT=100 \ | ||
-DCTEST_PARALLEL_LEVEL=16 \ | ||
-DTriBITS_CTEST_DRIVER_COVERAGE_TESTS=TRUE \ | ||
-DTriBITS_CTEST_DRIVER_MEMORY_TESTS=TRUE \ | ||
-DTriBITS_ENABLE_CONFIGURE_TIMING=ON \ | ||
-DTriBITS_ENABLE_PACKAGE_CONFIGURE_TIMING=ON \ | ||
-DTribitsExProj_INSTALL_BASE_DIR=${tribits_install_test_dir} \ | ||
-DTribitsExProj_INSTALL_OWNING_GROUP=wg-sems-users-son \ | ||
-DTriBITS_ENABLE_REAL_GIT_CLONE_TESTS=ON \ | ||
-DTriBITS_SHOW_TEST_START_END_DATE_TIME=ON \ | ||
"$@" | ||
|
||
#-DTriBITS_CTEST_DRIVER_COVERAGE_TESTS=TRUE \ | ||
#-DTriBITS_CTEST_DRIVER_MEMORY_TESTS=TRUE \ | ||
|
||
#-DTriBITS_ENABLE_DOC_GENERATION_TESTS=ON | ||
|
||
# To submit to testing.sandia.gov/cdash set: | ||
# | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_TO=TESTING_SANDIA_CDASH | ||
|
||
# To submit to testing-dev.sandia.gov/cdash set: | ||
# | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_TO=TESTING_DEV_SANDIA_CDASH | ||
|
||
# To submit to exp.cdash.org set: | ||
# | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_TO=EXP_CDASH | ||
|
||
# To submit to arbitrary CDash site (e.g. testing-dev.sandia.gov/cdash) set: | ||
# | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_TO=CUSTOM | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_DROP_SITE=testing-dev.sandia.gov | ||
# -DTriBITS_CTEST_DRIVER_SUBMIT_DROP_LOCATION="/cdash/submit.php?project=TribitsExProj" | ||
|
||
# NOTE: Add -DTriBITS_ENABLE_REAL_GIT_CLONE_TESTS=ON to test cloning TriBITS | ||
# Example repos and testing the clone features of the various tools. To get | ||
# this to work on SNL machines, one may need to switch from | ||
# 'https://github.com/' to '[email protected]:' using: | ||
# | ||
# export [email protected]:tribits/ | ||
# | ||
# before configuring. | ||
# | ||
# NOTE: The directory /tmp/tribits_install_tests above was created beforehand with: | ||
# | ||
# $ mkdir /tmp/tribits_install_tests | ||
# | ||
# One can allow another user to create the directory with a shared group for | ||
# more testing. |
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,7 @@ | ||
module purge | ||
module load aue/cmake/3.27.7 | ||
module load aue/ninja/1.11.1 | ||
module load aue/clang/16.0.6 | ||
module load aue/openmpi/4.1.6-clang-16.0.6 | ||
|
||
export [email protected]:tribits/ |
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,7 @@ | ||
module purge | ||
module load aue/cmake/3.27.7 | ||
module load aue/ninja/1.11.1 | ||
module load aue/gcc/10.3.0 | ||
module load aue/openmpi/4.1.6-gcc-10.3.0 | ||
|
||
export [email protected]:tribits/ |
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
2 changes: 1 addition & 1 deletion
2
test/ci_support/example_cdash_analyze_and_report_random_failures.py
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 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python3 | ||
|
||
import sys | ||
import argparse | ||
|
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 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import sys | ||
|
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
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
tribits/ci_support/get-tribits-packages-from-last-tests-failed.py
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
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
Oops, something went wrong.