Changeset 21194


Ignore:
Timestamp:
09/07/16 11:34:58 (9 years ago)
Author:
glperez
Message:

CHG: Removed exit statement that was screwing up externalpackages test. Also removed install success touch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/jenkins.sh

    r21189 r21194  
    143143                echo "======================================================";
    144144
    145                 # Jenkins needs to now whether the installation of externalpackages suceeded or not.
    146                 # The majority of externalpackages populate an install directory with various files.
    147                 # However, a few do not do this. Consequently, we need a way to confirm that these
    148                 # packages were installed correctly. The following accomplishes this without polluting
    149                 # installation directories.
    150                 echo "if [ ! -d ./install ]; then" >> ./$PACKAGEINST
    151                 echo "  mkdir ./install" >> ./$PACKAGEINST
    152                 echo "fi" >> ./$PACKAGEINST
    153                 echo "touch ./install/SUCCESS" >> ./$PACKAGEINST
    154 
    155145                ./$PACKAGEINST > compil.log
    156146                if [ $? -ne 0 ]; then
     
    161151                        echo '<failure message="failure">External packages did not install right. Check it.</failure>' >> $EXTERNAL_TEST_FILE
    162152                        echo '</testcase>' >> $EXTERNAL_TEST_FILE
    163                         exit 1
    164153                else
    165154                        echo "<testcase classname=\"externalpackages\" name=\"$PACKAGENAME\"/>" >> $EXTERNAL_TEST_FILE
Note: See TracChangeset for help on using the changeset viewer.