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
  
     | 
    
      #!/bin/bash
# Used to test Trilinos on any of the ORNL fissle 4 machines
# (e.g. u233, u235, pu239, and pu241).
# NOTE: To use this, you must first prepend /opt/trilinos-toolset/bin
# to your path to find eg and cmake!
# NOTE: This script automatically picks up any CASL VRI related extra
# repos and adds them to --extra-repos.  If you want to override that,
# you can just pass in --extra-repos=??? to drop off extra repos or
# select the set that you want.
EXTRA_ARGS=$@
# The default location for this directory tree is:
#
#  Trilinos.base
#    Trilinos    (your Trilinos soruce tree)
#    BUILDS
#      CHECKIN   (where you run this script from)
#
if [ "$TRILINOS_BASE_DIR" == "" ] ; then
  TRILINOS_BASE_DIR=../..
fi
TRILINOS_BASE_DIR_ABS=$(readlink -f $TRILINOS_BASE_DIR)
# Must be in the correct order (see ExtraExternalRepositories.casl_vri.cmake)
EXTRA_REPOS_FULL_LIST="StartCCMExt DeCARTExt CASLBOA CASLRAVE LIMEExt PSSDriversExt"
# Pakage in Trilinos to disable (mostly for auotmated CI server)
DISABLE_PACKAGES=PyTrilinos,TriKota,Optika,Sundance,Stokhos,STK
echo "
-DTrilinos_CONFIGURE_OPTIONS_FILE:FILEPATH=${TRILINOS_BASE_DIR_ABS}/Trilinos/cmake/ctest/drivers/pu241/gcc-4.5.1-mpi-options.cmake
" > MPI_DEBUG.config
echo "
-DTrilinos_CONFIGURE_OPTIONS_FILE:FILEPATH=${TRILINOS_BASE_DIR_ABS}/Trilinos/cmake/ctest/drivers/pu241/gcc-4.5.1-serial-options.cmake
" > SERIAL_RELEASE.config
#
# Extra intel builds added with --extra-builds=INTEL_RELEASE,...
#
# note: the pvm dirs below can be removed when configure_options_files supports multiple fragments
echo "
-DTrilinos_CONFIGURE_OPTIONS_FILE:FILEPATH=${TRILINOS_BASE_DIR_ABS}/Trilinos/cmake/ctest/drivers/pu241/intel-12.191-options.cmake
-DCMAKE_BUILD_TYPE:STRING=RELEASE
-DTrilinos_ENABLE_CHECKED_STL:BOOL=OFF
-DTPL_ENABLE_PVM:BOOL=ON
-DPVM_LIBRARY_DIRS:PATH='/opt/intel-11.1.064/tpls/pvm3/lib/LINUX64'
-DPVM_INCLUDE_DIRS:PATH='/opt/intel-11.1.064/tpls/pvm3/include'
-DVERA_COUPLED_BOA:BOOL=OFF
-DVERA_COUPLED_RAVE:BOOL=OFF
-DDART_TESTING_TIMEOUT:STRING=660
" > VERA_INTEL.config
echo "
-DTrilinos_CONFIGURE_OPTIONS_FILE:FILEPATH=${TRILINOS_BASE_DIR_ABS}/Trilinos/cmake/ctest/drivers/pu241/intel-12.191-options.cmake
-DCMAKE_BUILD_TYPE:STRING=RELEASE
-DTrilinos_ENABLE_CHECKED_STL:BOOL=OFF
-DTPL_ENABLE_PVM:BOOL=ON
-DPVM_LIBRARY_DIRS:PATH='/opt/intel-11.1.064/tpls/pvm3/lib/LINUX64'
-DPVM_INCLUDE_DIRS:PATH='/opt/intel-11.1.064/tpls/pvm3/include'
-DVERA_COUPLED_BOA:BOOL=ON
-DVERA_COUPLED_RAVE:BOOL=ON
-DDART_TESTING_TIMEOUT:STRING=660
" > VERA_INTEL_VERACOUPLINGS.config
#
# Load up the list of extra repos based on what is present:
#
EXTRA_REPOS=
for extra_repo in $EXTRA_REPOS_FULL_LIST; do
  #echo $extra_repo
  EXTRA_REPO_PATH=$TRILINOS_BASE_DIR/Trilinos/$extra_repo
  #echo $EXTRA_REPO_PATH
  if [ -d $EXTRA_REPO_PATH ]; then
    EXTRA_REPOS=$EXTRA_REPOS$extra_repo,
  fi
done
#echo "EXTRA_REPOS=$EXTRA_REPOS"
#
# Invocation
#
$TRILINOS_BASE_DIR/Trilinos/checkin-test.py \
--extra-repos=$EXTRA_REPOS \
-j8 \
--ctest-timeout=180 \
--disable-packages=$DISABLE_PACKAGES \
--ctest-options="-E '(Ifpack_BlockCheby_MPI_4)'" \
$EXTRA_ARGS  
# NOTE: By default we use 8 processes which is 1/4 of the 32 processes
# on a fissile 4 machine.  This way four people can build and test
# Trilinos without taxing the machine too much.
# The above the test Ifpack_BlockCheby_MPI_4 is disabled becuses they
# have checked STL errors (see bugs 5203 and 5204).
 
     |