- Timestamp:
- 02/28/24 11:13:00 (13 months ago)
- Location:
- issm/trunk-jpl/packagers/mac/intel
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/mac/intel/sign-issm-mac-intel-binaries-matlab.sh
r28107 r28108 5 5 # Cybersecurity server for signing macOS applications. Polls SCM of the 6 6 # Subversion repository hosted at 7 # https://issm.ess.uci.edu/svn/issm-binaries/mac/ matlab/unsigned to trigger new8 # builds.9 # 10 # In order to replicate the required Jenkins project configuration :11 # - First, navigate to 'Manage Jenkins' -> 'Manage Plugins' and install the7 # https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/matlab/unsigned to 8 # trigger new builds. 9 # 10 # In order to replicate the required Jenkins project configuration, 11 # - first, navigate to 'Manage Jenkins' -> 'Manage Plugins' and install the 12 12 # 'Credentials Bindings Plugin' if it is not already installed. 13 # - Contact one of the members of the ISSM development team for credentials for13 # - contact one of the members of the ISSM development team for credentials for 14 14 # the ISSM binaries repository (mention that the credentials are stored in 15 15 # ISSM-Infrastructure.pdf). 16 # - Navigate to 'Manage Jenkins' -> 'Manage Credentials' -> <domain> ->16 # - navigate to 'Manage Jenkins' -> 'Manage Credentials' -> <domain> -> 17 17 # 'Add Credentials' and enter the credentials from above. 18 # - From the 'Dashboard', select 'New Item' -> 'Freestyle project'. 19 # - Under 'Source Code Management', select 'Subversion'. 20 # - The 'Repository URL' text field should be set to 21 # "https://issm.ess.uci.edu/svn/issm-binaries/mac/matlab/unsigned". 22 # - The 'Credentials' select menu should be set to the new credentials 18 # - from the 'Dashboard', select 'New Item' -> 'Freestyle project'. 19 # - under 'Source Code Management', select 'Subversion', 20 # - the 'Repository URL' text field should be set to 21 # 22 # https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/matlab/unsigned 23 # 24 # - the 'Credentials' select menu should be set to the new credentials 23 25 # created previously. 24 # - The 'Local module directory' text field should be set to the same26 # - the 'Local module directory' text field should be set to the same 25 27 # value as the constant UNSIGNED_REPO_COPY (set below to './unsigned'). 26 # - Under 'Build Triggers', check the box for 'Poll SCM' and set the28 # - under 'Build Triggers', check the box for 'Poll SCM' and set the 27 29 # 'Schedule' text area to "H/5 * * * *". 28 # - Under 'Build Environment', check the box for 'Use secret text(s) or30 # - under 'Build Environment', check the box for 'Use secret text(s) or 29 31 # file(s)', then under 'Bindings' click the 'Add...' button and select 30 # 'Username and password (separated)' .31 # - Set 'Username Variable' to "ISSM_BINARIES_USER".32 # - Set 'Password Variable' to "ISSM_BINARIES_PASS".33 # - Under 'Credentials', select the same, new credentials that created32 # 'Username and password (separated)', 33 # - set 'Username Variable' to "ISSM_BINARIES_USER". 34 # - set 'Password Variable' to "ISSM_BINARIES_PASS". 35 # - under 'Credentials', select the same, new credentials that created 34 36 # previously. 35 # - The contents of this script can be copied/pasted directly into the ‘Build'37 # - the contents of this script can be copied/pasted directly into the ‘Build' 36 38 # -> 'Execute Shell' -> ‘Command' textarea of the project configuration (or 37 39 # you can simply store the script on disk and call it from there). 38 # - Make sure to click the 'Save' button.40 # - make sure to click the 'Save' button. 39 41 # 40 42 # Current point of contact at JPL Cybersecurity: … … 79 81 NOTARIZATION_LOGFILE_PATH="." 80 82 PASSWORD=${ISSM_BINARIES_PASS} 81 PKG="ISSM-macOS- MATLAB"83 PKG="ISSM-macOS-Intel-MATLAB" 82 84 SIGNED_REPO_COPY="./signed" 83 SIGNED_REPO_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/ matlab/signed"85 SIGNED_REPO_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/matlab/signed" 84 86 SIGNING_LOCK_FILE="signing.lock" 85 87 SUCCESS_LOGFILE="${SIGNED_REPO_COPY}/success.log" 86 88 UNSIGNED_REPO_COPY="./unsigned" 87 UNSIGNED_REPO_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/ matlab/unsigned"89 UNSIGNED_REPO_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/matlab/unsigned" 88 90 USERNAME=${ISSM_BINARIES_USER} 89 91
Note:
See TracChangeset
for help on using the changeset viewer.