Changeset 28110


Ignore:
Timestamp:
02/28/24 12:14:09 (13 months ago)
Author:
jdquinn
Message:

ADD: Needed to modify permissions

File:
1 copied

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/packagers/mac/intel/complete-issm-mac-intel-binaries-python-3.sh

    r28108 r28110  
    33################################################################################
    44# Wrapper script to build, package, send for signing, and transfer to ISSM
    5 # website ISSM distributable package with MATLAB API for macOS running on
     5# website ISSM distributable package with Python 3 API for macOS running on
    66# Intel.
    77#
     
    3636#       Jenkins server. Debugging may be performed locally by running,
    3737#
    38 #               packagers/mac/intel/sign-issm-mac-intel-binaries-matlab.sh
     38#               packagers/mac/intel/sign-issm-mac-intel-binaries-python-3.sh
    3939#
    4040#       with "AD_IDENTITY", "AD_USERNAME", and "ASC_PROVIDER" hardcoded to Apple
     
    5858## Constants
    5959#
    60 PKG="ISSM-macOS-Intel-MATLAB" # Name of directory to copy distributable files to
    61 REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/matlab"
     60PKG="ISSM-macOS-Intel-Python-3" # Name of directory to copy distributable files to
     61REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/python/3"
    6262SIGNED_REPO_COPY="./signed"
    6363SIGNED_REPO_URL="${REPO_BASE_URL}/signed"
     
    104104# Build
    105105if [ ${build} -eq 1 ]; then
    106         ./jenkins/jenkins.sh ./jenkins/mac-intel-binaries-matlab
     106        ./jenkins/jenkins.sh ./jenkins/mac-intel-binaries-python-3
    107107
    108         if [ $? -ne 0 ]; then
    109                 echo "Failure while compiling"
     108        if [ $? -ne 0 ]; then
    110109                exit 1
    111110        fi
     
    114113# Package
    115114if [ ${package} -eq 1 ]; then
    116         ./packagers/mac/intel/package-issm-mac-intel-binaries-matlab.sh $1
     115        ./packagers/mac/intel/package-issm-mac-intel-binaries-python-3.sh $1
    117116
    118         if [ $? -ne 0 ]; then
    119                 echo "Failure during packaging"
     117        if [ $? -ne 0 ]; then
    120118                exit 1
    121119        fi
     
    126124# Commit for signing
    127125if [ ${sign} -eq 1 ]; then
    128         ./packagers/mac/intel/commit_for_signing-issm-mac-intel-binaries-matlab.sh $1
     126        ./packagers/mac/intel/commit_for_signing-issm-mac-intel/binaries-python-3.sh $1
    129127
    130         if [ $? -ne 0 ]; then
    131                 echo "Failure while committing package for signing"
     128        if [ $? -ne 0 ]; then
    132129                exit 1
    133130        fi
Note: See TracChangeset for help on using the changeset viewer.