source: issm/trunk-jpl/packagers/mac/complete-issm-mac-binaries-python.sh@ 25893

Last change on this file since 25893 was 25893, checked in by jdquinn, 4 years ago

CHG: Split up macOS binaries Python packaging into multiple scripts as well; generalized transfer script

  • Property svn:executable set to *
File size: 3.8 KB
Line 
1#!/bin/bash
2
3################################################################################
4# Wrapper script to build, package, send for signing, and transfer to ISSM Web
5# site ISSM distributable package for macOS with Python API.
6#
7# Normally, we would put this directly into the project configuration under
8# 'Build' -> 'Excute shell', but becasue it is a bit more involved, it is a
9# good idea to version it.
10#
11# When no failures/errors occur, performs the following:
12# - Builds ISSM according to configuration.
13# - Packages and compresses executables and libraries.
14# - Runs test suite against package.
15# - Commits compressed package to repository to be signed by JPL Cybersecurity.
16# - Retrieves signed package and transmits it to ISSM Web site for
17# distribution.
18#
19# Options:
20# -b/--skipbuild Skip ISSM compilation.
21# -r/--resign Skip ISSM compilation and packaging. Use to retrigger
22# signing/notarization if it fails but build and package
23# are valid.
24# -s/--skiptests Skip ISSM compilation and testing during packaging
25# step. Use if
26# -t/--transferonly Transfer package to ISSM Web site only. Use if transfer
27# fails for some reason to skip building, packaging, and
28# signing.
29# -u/--unlock Remove lock file from signed package repository. Use if
30# build is aborted to allow for subsequent fresh build.
31#
32# Debugging:
33# - Relies on a very tight handshake with project on remote JPL Cybersecurity
34# Jenkins server. Debugging may be perfomed locally by running,
35#
36# packagers/mac/sign-issm-mac-binaries-python.sh
37#
38# with "ISSM_BINARIES_USER" and "ISSM_BINARIES_PASS" hardcoded to Apple
39# Developer credentials.
40# - Removing stdout/stderr redirections to null device (> /dev/null 2>&1) can
41# help debug potential SVN issues.
42#
43# NOTE:
44# - Use only *one* of the above options at a time, and make sure it is removed
45# again after a single run.
46# - Builds will fail when any of the above options are used on a clean
47# workspace. For example, if 'Source Code Management' -> 'Check-out Strategy'
48# select menu is set to "Always check out a fresh copy".
49# - Assumes that "ISSM_BINARIES_USER" and "ISSM_BINARIES_PASS" are set up in
50# the 'Bindings' section under a 'Username and password (separated)' binding
51# (requires 'Credentials Binding Plugin') with 'Credentials' select menu set
52# to "jenkins/****** (SVN repository for ISSM binaries)".
53################################################################################
54
55## Constants
56#
57PKG="ISSM-macOS-Python" # Name of directory to copy distributable files to
58SIGNED_REPO_COPY="./signed"
59SIGNED_REPO_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/python/signed"
60
61COMPRESSED_PKG="${PKG}.zip"
62
63## Environment
64#
65export COMPRESSED_PKG
66export PKG
67export SIGNED_REPO_COPY
68export SIGNED_REPO_URL
69
70## Parse options
71#
72if [ $# -gt 1 ]; then
73 echo "Can use only one option at a time"
74 exit 1
75fi
76
77# NOTE: We could do this with binary switching (i.e. 0011 to sign and transfer,
78# but the following is self-documenting).
79#
80build=1
81package=1
82sign=1
83transfer=1
84
85if [ $# -eq 1 ]; then
86 case $1 in
87 -b|--skipbuild) build=0; shift ;;
88 -r|--resign) build=0; package=0; ;;
89 -s|--skiptests) build=0; ;;
90 -t|--transferonly) build=0; package=0; sign=0; ;;
91 -u|--unlock) build=0; package=0; transfer=0; ;;
92 *) echo "Unknown parameter passed: $1"; exit 1 ;;
93 esac
94fi
95
96# Build
97if [ ${build} -eq 1 ]; then
98 ./jenkins/jenkins.sh ./jenkins/pine_island-mac-binaries-python
99fi
100
101# Package
102if [ ${package} -eq 1 ]; then
103 ./packagers/mac/package-issm-mac-binaries-python.sh $1
104 shift # Clear $1 so that it is not passed to commit_for_signing script
105fi
106
107# Commit for signing
108if [ ${sign} -eq 1 ]; then
109 ./packagers/mac/commit_for_signing-issm-mac-binaries-python.sh $1
110fi
111
112# Transfer distributable package to ISSM Web site
113if [ ${transfer} -eq 1 ]; then
114 ./packagers/mac/transfer-issm-mac-binaries.sh
115fi
116
Note: See TracBrowser for help on using the repository browser.