Changeset 20395


Ignore:
Timestamp:
03/30/16 20:33:37 (9 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing parser

Location:
issm/trunk-jpl/jenkins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/imac-012301-gil

    r20394 r20395  
    2525MATLAB_TEST=1
    2626PYTHON_TEST=0
    27 
    28 #execution path used for parallel runs
    29 EXECUTION_PATH=$ISSM_DIR/execution
    30 
    31 #repo:
    32 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
    3327
    3428#-----------------------------------#
  • issm/trunk-jpl/jenkins/jenkins.sh

    r20394 r20395  
    3030#}}}
    3131
    32 
     32#Install ISSM
    3333#Determinig Installation type depending on svn changes{{{
    3434echo "======================================================";
     
    4545        wget http://ross.ics.uci.edu:8080/job/$JOB_NAME/$BUILD_NUMBER/changes > /dev/null 2>&1
    4646
    47         #Process html page and get the list of files that has changed
    48         cat changes | grep "The file was modified" | sed -e 's/.*<\/a><\/td><td>\(.*\)<\/td><\/tr><\/table>.*/\1/' > $ISSM_DIR/TEMP
    49         cat $ISSM_DIR/TEMP
     47        #Process html page and get the list of files that has changed (tricky...)
     48
     49        cat changes | grep 'alt="The file was modified"' |sed -e 's/alt="The file was modified"/\
     50                #/g' | sed -e 's/.*<\/a><\/td><td>\(.*\)<\/td><\/tr>.*/\1/' | grep -v '"The file was modified"' > $ISSM_DIR/TEMP
     51        if [ -z "$(cat $ISSM_DIR/TEMP)" ] ; then
     52                echo "ERROR: file list is empty!"
     53        fi
    5054
    5155        #Do we need to reinstall externalpackages?
     
    8892echo $SVN_REVISION_1 > $ISSM_DIR/svn_revision_old
    8993#}}}
    90 
    9194#install/none external packages    (ISSM_EXTERNALPACKAGES){{{
    9295if [ "$ISSM_EXTERNALPACKAGES" == "install" ]
  • issm/trunk-jpl/jenkins/linux64_murdo

    r20394 r20395  
    3131MATLAB_TEST=1
    3232PYTHON_TEST=1
    33 
    34 #execution path used for parallel runs
    35 EXECUTION_PATH=$ISSM_DIR/execution
    36 
    37 #repo:
    38 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
    3933
    4034#-----------------------------------#
  • issm/trunk-jpl/jenkins/macosx_pine-island

    r20394 r20395  
    2525MATLAB_TEST=1
    2626PYTHON_TEST=0
    27 
    28 #execution path used for parallel runs
    29 EXECUTION_PATH=$ISSM_DIR/execution
    30 
    31 #repo:
    32 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"
    3327
    3428#-----------------------------------#
Note: See TracChangeset for help on using the changeset viewer.