Changeset 20395
- Timestamp:
- 03/30/16 20:33:37 (9 years ago)
- Location:
- issm/trunk-jpl/jenkins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/imac-012301-gil
r20394 r20395 25 25 MATLAB_TEST=1 26 26 PYTHON_TEST=0 27 28 #execution path used for parallel runs29 EXECUTION_PATH=$ISSM_DIR/execution30 31 #repo:32 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"33 27 34 28 #-----------------------------------# -
issm/trunk-jpl/jenkins/jenkins.sh
r20394 r20395 30 30 #}}} 31 31 32 32 #Install ISSM 33 33 #Determinig Installation type depending on svn changes{{{ 34 34 echo "======================================================"; … … 45 45 wget http://ross.ics.uci.edu:8080/job/$JOB_NAME/$BUILD_NUMBER/changes > /dev/null 2>&1 46 46 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 50 54 51 55 #Do we need to reinstall externalpackages? … … 88 92 echo $SVN_REVISION_1 > $ISSM_DIR/svn_revision_old 89 93 #}}} 90 91 94 #install/none external packages (ISSM_EXTERNALPACKAGES){{{ 92 95 if [ "$ISSM_EXTERNALPACKAGES" == "install" ] -
issm/trunk-jpl/jenkins/linux64_murdo
r20394 r20395 31 31 MATLAB_TEST=1 32 32 PYTHON_TEST=1 33 34 #execution path used for parallel runs35 EXECUTION_PATH=$ISSM_DIR/execution36 37 #repo:38 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"39 33 40 34 #-----------------------------------# -
issm/trunk-jpl/jenkins/macosx_pine-island
r20394 r20395 25 25 MATLAB_TEST=1 26 26 PYTHON_TEST=0 27 28 #execution path used for parallel runs29 EXECUTION_PATH=$ISSM_DIR/execution30 31 #repo:32 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"33 27 34 28 #-----------------------------------#
Note:
See TracChangeset
for help on using the changeset viewer.