Changeset 27607


Ignore:
Timestamp:
02/22/23 21:12:39 (2 years ago)
Author:
jdquinn
Message:

BUG: Forgot to add gmtselect back to list of binaries copied to package

Location:
issm/trunk-jpl/packagers/mac
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/packagers/mac/complete-issm-mac-binaries-matlab.sh

    r27555 r27607  
    130130# Transfer distributable package to ISSM Web site
    131131if [ ${transfer} -eq 1 ]; then
    132         ./packagers/mac/transfer-issm-mac-binaries.sh
     132        # ./packagers/mac/transfer-issm-mac-binaries.sh
    133133
    134         if [ $? -ne 0 ]; then
    135                 echo "Failure while transferring package to ISSM server"
    136                 exit 1
    137         fi
     134        # if [ $? -ne 0 ]; then
     135        #       exit 1
     136        # fi
     137
     138        # NOTE: Because Mac build nodes are no longer directly connected to UCI
     139        #               network and because remote access requires a VPN connection, we can
     140        #               no longer transfer signed distributables via SSH. For now, there is
     141        #               a cron job running every five minutes on ross.ics.uci.edu that runs
     142        #               /home/jenkins/bin/update-issm-mac-binaries.sh, which checks for
     143        #               updated, signed distributables in the ISSM Binaries SVN repository
     144        #               and if they are available, copies them to the public directory.
     145        #
    138146fi
    139147
  • issm/trunk-jpl/packagers/mac/complete-issm-mac-binaries-python-3.sh

    r27570 r27607  
    127127# Transfer distributable package to ISSM Web site
    128128if [ ${transfer} -eq 1 ]; then
    129         ./packagers/mac/transfer-issm-mac-binaries.sh
     129        # ./packagers/mac/transfer-issm-mac-binaries.sh
    130130
    131         if [ $? -ne 0 ]; then
    132                 exit 1
    133         fi
     131        # if [ $? -ne 0 ]; then
     132        #       exit 1
     133        # fi
     134
     135        # NOTE: Because Mac build nodes are no longer directly connected to UCI
     136        #               network and because remote access requires a VPN connection, we can
     137        #               no longer transfer signed distributables via SSH. For now, there is
     138        #               a cron job running every five minutes on ross.ics.uci.edu that runs
     139        #               /home/jenkins/bin/update-issm-mac-binaries.sh, which checks for
     140        #               updated, signed distributables in the ISSM Binaries SVN repository
     141        #               and if they are available, copies them to the public directory.
     142        #
    134143fi
    135144
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh

    r27603 r27607  
    113113if [ -f ${ISSM_DIR}/externalpackages/gmt/install/bin/gmt-config ]; then
    114114        cp ${ISSM_DIR}/externalpackages/gmt/install/bin/gmt .
     115        cp ${ISSM_DIR}/externalpackages/gmt/install/bin/gmtselect .
    115116else
    116117        echo "GMT not found"
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh

    r27603 r27607  
    105105if [ -f ${ISSM_DIR}/externalpackages/gmt/install/bin/gmt-config ]; then
    106106        cp ${ISSM_DIR}/externalpackages/gmt/install/bin/gmt .
     107        cp ${ISSM_DIR}/externalpackages/gmt/install/bin/gmtselect .
    107108else
    108109        echo "GMT not found"
  • issm/trunk-jpl/packagers/mac/sign-issm-mac-binaries-matlab.sh

    r27580 r27607  
    1111# - First, navigate to 'Manage Jenkins' -> 'Manage Plugins' and install the
    1212#       'Credentials Bindings Plugin' if it is not already installed.
    13 # - Contact one of the members of the ISSM development team for crendentials
    14 #       for the ISSM binaries repository (mention that the credentials are stored
    15 #       in ISSM-Infrastructure.pdf).
     13# - Contact one of the members of the ISSM development team for credentials for
     14#       the ISSM binaries repository (mention that the credentials are stored in
     15#       ISSM-Infrastructure.pdf).
    1616# - Navigate to 'Manage Jenkins' -> 'Manage Credentials' -> <domain> ->
    17 #       'Add Credentials' and enter the crendentials from above.
     17#       'Add Credentials' and enter the credentials from above.
    1818# - From the 'Dashboard', select 'New Item' -> 'Freestyle project'.
    1919# - Under 'Source Code Management', select 'Subversion'.
     
    2424#               - The 'Local module directory' text field should be set to the same
    2525#               value as the constant UNSIGNED_REPO_COPY (set below to './unsigned').
    26 # - Under 'Build Trigggers', check the box for 'Poll SCM' and set the
     26# - Under 'Build Triggers', check the box for 'Poll SCM' and set the
    2727#       'Schedule' text area to "H/5 * * * *".
    2828# - Under 'Build Environment', check the box for 'Use secret text(s) or
  • issm/trunk-jpl/packagers/mac/sign-issm-mac-binaries-python-3.sh

    r27580 r27607  
    1111# - First, navigate to 'Manage Jenkins' -> 'Manage Plugins' and install the
    1212#       'Credentials Bindings Plugin' if it is not already installed.
    13 # - Contact one of the members of the ISSM development team for crendentials
    14 #       for the ISSM binaries repository (mention that the credentials are stored
    15 #       in ISSM-Infrastructure.pdf).
     13# - Contact one of the members of the ISSM development team for credentials for
     14#       the ISSM binaries repository (mention that the credentials are stored in
     15#       ISSM-Infrastructure.pdf).
    1616# - Navigate to 'Manage Jenkins' -> 'Manage Credentials' -> <domain> ->
    17 #       'Add Credentials' and enter the crendentials from above.
     17#       'Add Credentials' and enter the credentials from above.
    1818# - From the 'Dashboard', select 'New Item' -> 'Freestyle project'.
    1919# - Under 'Source Code Management', select 'Subversion'.
     
    2424#               - The 'Local module directory' text field should be set to the same
    2525#               value as the constant UNSIGNED_REPO_COPY (set below to './unsigned').
    26 # - Under 'Build Trigggers', check the box for 'Poll SCM' and set the
     26# - Under 'Build Triggers', check the box for 'Poll SCM' and set the
    2727#       'Schedule' text area to "H/5 * * * *".
    2828# - Under 'Build Environment', check the box for 'Use secret text(s) or
Note: See TracChangeset for help on using the changeset viewer.