Changeset 27428


Ignore:
Timestamp:
11/26/22 16:34:30 (2 years ago)
Author:
jdquinn
Message:

CHG: Cleanup

Location:
issm/trunk-jpl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/valgrind/install-linux.sh

    r25706 r27428  
    33
    44
     5## Constants
     6#
     7PREFIX="${ISSM_DIR}/externalpackages/valgrind/install" # Set to location where external package should be installed
     8
    59# Clean up
    6 rm -rf install
     10rm -rf ${PREFIX} src
    711
    8 # Download development version
    9 git clone git://sourceware.org/git/valgrind.git install
     12# Download development version (the current release never supports the latest
     13# OS X releases)
     14git clone git://sourceware.org/git/valgrind.git src
    1015
    1116# Configure
    12 cd install
     17cd src
    1318./autogen.sh
    1419./configure \
    15         --prefix="$ISSM_DIR/externalpackages/valgrind/install" \
     20        --prefix="${PREFIX}" \
    1621        --enable-only64bit
    1722
  • issm/trunk-jpl/externalpackages/valgrind/install-mac.sh

    r25860 r27428  
    88
    99# Clean up
    10 rm -rf ${PREFIX}
     10rm -rf ${PREFIX} src
    1111
    1212# Download development version (the current release never supports the latest
    1313# OS X releases)
    14 git clone git://sourceware.org/git/valgrind.git ${PREFIX}
     14git clone git://sourceware.org/git/valgrind.git src
    1515
    1616# Configure
    17 cd install
     17cd src
    1818./autogen.sh
    1919./configure \
  • issm/trunk-jpl/jenkins/jenkins.sh

    r27202 r27428  
    2828SERVER='https://ross.ics.uci.edu/jenkins'
    2929
    30 #Get configuration
    31 #Source config file{{{
     30# Get configuration
     31# Source config file {{{
    3232if [ $# -ne 1 ]; then
    3333        #no config file specified: exit
     
    4646EXAMPLES_TEST=0
    4747
    48 # Initialize resource variables (to avoid "i<=: syntax error: operand expected"
    49 # in for loops)
     48# Initialize resource variables (to avoid "i<=: syntax error: operand expected" in for loops)
    5049NUMCPUS_INSTALL=1
    5150NUMCPUS_RUN=1
    5251
    53 #source configuration script
     52# Source configuration script
    5453source $1;
    55 #}}}
     54# }}}
    5655
    5756if [[ $EXAMPLES_TEST -eq 1 && $MATLAB_TEST+$PYTHON_TEST+$JAVASCRIPT_TEST -ne 0 ]]; then
     
    6059fi
    6160
    62 #Install ISSM
    63 #Determining installation type depending on svn changes{{{
     61# Install ISSM
     62# Determining installation type depending on svn changes {{{
    6463echo "======================================================";
    6564echo "             Determining Installation type            "
     
    9291        echo "   "
    9392
    94         ###################################
    95         ### Determine installation type ###
    96         ###################################
     93        ## Determine installation type
     94        #
    9795        echo "Determining installation type"
    9896
     
    107105        fi
    108106
    109         # If the Makefile or m4 diirectory were changed in any way or if certain
     107        # If the Makefile or m4 directory were changed in any way or if certain
    110108        # binary files from a previous compilation do not exist, reconfigure
    111109        if [ ! -z "$(cat ${ISSM_DIR}/TEMP | grep -e "Makefile.am" -e "m4" )" ] ||
     
    145143echo "Recording current svn version: $SVN_REVISION_1"
    146144echo $SVN_REVISION_1 > ${ISSM_DIR}/svn_revision_old
    147 #}}}
     145# }}}
    148146
    149147## External Packages
     
    153151NUMPACKAGES=$(($(echo ${EXTERNALPACKAGES} | wc -w ) / 2))
    154152
    155 #Jenkins XML files for individual packages
     153# Jenkins XML files for individual packages
    156154EXTERNAL_TEST_FILE="${ISSM_DIR}/nightlylog/results/external.xml"
    157155mkdir -p ${ISSM_DIR}/nightlylog/results
    158156echo "<testsuite tests=\"$NUMPACKAGES\">" > $EXTERNAL_TEST_FILE
    159157
    160 # Need a source here for when builds start midway through installation of externalpackages.
     158# Need a source here for when builds start midway through installation of externalpackages
    161159source ${ISSM_DIR}/etc/environment.sh
    162 
    163 if [ "${OS}" == CYGWIN* ]; then
    164         echo " == WINDOWS ENVIRONMENT DETECTED =="
    165         source ${ISSM_DIR}/externalpackages/windows/windows_environment.sh
    166 fi
    167160
    168161EXTERNALPACKAGES_FAILED=0;
     
    174167        PACKAGEINST=$(echo $EXTERNALPACKAGES | cut -d " " -f $NUM2-$NUM2)
    175168
    176         #install if requested or if previous install has not been successful
     169        # Install if requested or if previous install has not been successful
    177170        if [ "${ISSM_EXTERNALPACKAGES}" == "yes" ]; then # NOTE: Removed check on if 'install' directory exist
    178171                cd ${ISSM_DIR}/externalpackages/$PACKAGENAME
     
    199192                                echo '</failure>' >> $EXTERNAL_TEST_FILE
    200193                                echo '</testcase>' >> $EXTERNAL_TEST_FILE
    201                                 EXTERNALPACKAGES_FAILED=1;
     194                                echo '</testsuite>' >> $EXTERNAL_TEST_FILE
     195                                exit 1;
    202196                        else
    203197                                echo "<testcase classname=\"externalpackages\" name=\"$PACKAGENAME\"/>" >> $EXTERNAL_TEST_FILE
     
    224218echo '</testsuite>' >> $EXTERNAL_TEST_FILE
    225219
    226 if [ $EXTERNALPACKAGES_FAILED -eq 1 ]; then
    227         echo "===================================================================================================";
    228         echo "    ERROR: One or more of the externalpackages has failed. Skipping everything remaining steps.    ";
    229         echo "===================================================================================================";
    230         exit 1;
    231 fi
    232 
    233220# Source here to include any newly-installed external packages on the path
    234221source ${ISSM_DIR}/etc/environment.sh
     
    246233#       independent from running JavaScript tests (one should be able to do the
    247234#       former without having to do the latter).
    248 # - Revisit enviroment variables (especially EMCC_CFLAGS) once support for
     235# - Revisit environment variables (especially EMCC_CFLAGS) once support for
    249236#       Fortran has been accomplished.
    250237#
     
    261248fi
    262249
    263 #}}}
    264 #ISSM compilation yes/no                (ISSM_COMPILATION) {{{
     250# }}}
     251# ISSM compilation yes/no (ISSM_COMPILATION) {{{
    265252if [ "${ISSM_COMPILATION}" == "yes" ]; then
    266253        cd $ISSM_DIR
     
    285272        fi
    286273
    287         #4: compile and install ISSM
     274        # Compile and install ISSM
    288275        echo "======================================================"
    289276        echo "                    Compiling ISSM                    "
    290277        echo "======================================================"
    291278        if [ $NUMCPUS_INSTALL -gt 1 ]; then
    292                 echo "Making with ${NUMCPUS_INSTALL} cpus"
     279                echo "Making with ${NUMCPUS_INSTALL} CPUs"
    293280
    294281                # To debug compilation/linking, add 'V=1' option to the call to make
     
    313300        echo "Skipping ISSM compilation"
    314301else
    315         echo "ISSM_COMPILATION supported values are: yes and no. Exiting..." >&2 # Error message to stderr.
     302        echo "ISSM_COMPILATION supported values are: yes and no. Exiting..." >&2 # Redirect error messages to stderr
    316303        exit 1
    317304fi
    318 #}}}
    319 
    320 #Restore CXX/CC to their previous values
     305# }}}
     306
     307# Restore CC/CXX to their previous values
     308export CC=$CC_PREVIOUS
    321309export CXX=$CXX_PREVIOUS
    322 export CC=$CC_PREVIOUS
    323 
    324 #matlab tests
    325 # {{{
     310
     311# MATLAB tests {{{
    326312if [ $MATLAB_TEST -eq 1 ]; then
    327313        MINGW=0
     
    333319        fi
    334320
    335         #Launch all tests on different cpus
     321        # Launch all tests on different CPUs
    336322        for (( i=1;i<=$NUMCPUS_RUN;i++ )); do
    337                 #Launch matlab and the nightly run script
     323                # Launch MATLAB and the nightly run script
    338324                cat > ${ISSM_DIR}/nightlylog/matlab_run$i.m << EOF
    339325                warning off %necessary to avoid a log of several Go for parallel runs
     
    358344                cd $ISSM_DIR/test/NightlyRun
    359345
    360                 # NOTE: We redirect all output to logfile in order to catch certain errors. For some reason, this does not work under Windows: the logifle option must be used and process must be run in background
    361                 if [[ "${OS}" == CYGWIN* || ${MINGW} -eq 1 ]]; then
     346                # NOTE: We redirect all output to logfile in order to catch certain errors. For some reason, this does not work under Windows: the logfile option must be used and process must be run in background
     347                if [[ ${MINGW} -eq 1 ]]; then
    362348                        $MATLAB_PATH/bin/matlab -nodesktop -nosplash -nojvm -r "addpath ${ISSM_DIR_WIN}/src/m/dev; devpath; addpath ${ISSM_DIR_WIN}/nightlylog; matlab_run$i" -logfile ${ISSM_DIR_WIN}/nightlylog/matlab_log$i.log &
    363349                else
     
    371357        # - Replace by adding -wait option to above calls to matlab?
    372358        #
    373         if [[ "${OS}" == CYGWIN* ]]; then
    374                 sleep 5;
    375                 echo "Waiting for MATLAB to exit"
    376                 pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}')
    377                 echo '-----------------------------'
    378                 echo "pid: ${pid}"
    379                 echo '-----------------------------'
    380                 while [ -n "${pid}" ]; do
    381                         pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}')
    382                         sleep 1;
    383                 done
    384                 echo "DONE!"
    385         elif [[ ${MINGW} -eq 1 ]]; then
    386                 # NOTE: The PID query used here may work as well on Cygwin. If so, combine the two conditional blocks.
     359        if [[ ${MINGW} -eq 1 ]]; then
    387360                sleep 5;
    388361                echo "Waiting for MATLAB to exit"
     
    429402        done
    430403
    431         #filter out windows characters:
     404        # Filter out Windows characters
    432405        cat matlab_log.log | tr -cd '\11\12\40-\176' > matlab_log.log2 && mv matlab_log.log2 matlab_log.log
    433406fi
    434407# }}}
    435408
    436 # Python tests
     409# Python tests # {{{
    437410#
    438411# TODO: Figure out why "Running Python test for Rank $i" is printed twice for each CPU
    439 # {{{
     412#
    440413if [ $PYTHON_TEST -eq 1 ]; then
    441         #Launch all tests on different cpus
     414        # Launch all tests on different CPUs
    442415        export PYTHONPATH="${ISSM_DIR}/src/m/dev"
    443416        export PYTHONSTARTUP="${PYTHONPATH}/devpath.py"
    444         export PYTHONUNBUFFERED=1 #we don't want python to buffer otherwise issm.exe output is not captured
     417        export PYTHONUNBUFFERED=1 # We don't want Python to buffer otherwise issm.exe output is not captured
    445418        for (( i=1;i<=$NUMCPUS_RUN;i++ ))
    446419        do
     
    474447rm -f $ISSM_DIR/execution/*/ADOLC-*
    475448
    476 # Examples Tests
    477 # {{{
     449# Examples Tests # {{{
    478450if [ $EXAMPLES_TEST -eq 1 ]; then
    479451        export MATLAB_PATH
     
    482454# }}}
    483455
    484 # Process logs to be JUnit compatible
    485 #{{{
     456# Process logs to be JUnit compatible # {{{
    486457cd $ISSM_DIR/nightlylog
    487458source $ISSM_EXT_DIR/shell2junit/install/bin/sh2ju.sh
     
    489460
    490461if [ $MATLAB_TEST -eq 1 ]; then
    491         #number tests:
     462        # Number tests
    492463        numtests=`cat matlab_log.log | grep "\-\-\-\-\-\-\-\-starting" | wc -l`
    493464        testlist=`cat matlab_log.log | grep "\-\-\-\-\-\-\-\-starting" | sed 's/----------------starting://g' | sed 's/-//g'`
     
    515486
    516487if [ $PYTHON_TEST -eq 1 ]; then
    517         #number tests:
     488        # Number tests
    518489        numtests=`cat python_log.log | grep "\-\-\-\-\-\-\-\-starting" | wc -l`
    519490        testlist=`cat python_log.log | grep "\-\-\-\-\-\-\-\-starting" | sed 's/----------------starting://g' | sed 's/-//g'`
     
    569540# Clean up execution directory
    570541rm -rf $ISSM_DIR/execution/*
    571 #}}}
     542# }}}
  • issm/trunk-jpl/jenkins/ross-debian_linux-full-valgrind

    r27427 r27428  
    5151        netcdf          install-4.7-parallel.sh
    5252        proj            install-6.sh
    53         sqlite          install.sh
    5453        gdal            install-3-python.sh
    5554        gshhg           install.sh
Note: See TracChangeset for help on using the changeset viewer.