Changeset 25900
- Timestamp:
- 12/19/20 13:52:30 (4 years ago)
- Location:
- issm/trunk-jpl/packagers
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/packagers/linux/complete-issm-linux-binaries-matlab.sh ¶
r25896 r25900 69 69 if [ ${build} -eq 1 ]; then 70 70 ./jenkins/jenkins.sh ./jenkins/ross-debian_linux-binaries-matlab 71 72 if [ $? -ne 0 ]; then 73 echo 'Build failed' 74 exit 1 75 fi 71 76 fi 72 77 -
TabularUnified issm/trunk-jpl/packagers/linux/complete-issm-linux-binaries-python.sh ¶
r25896 r25900 69 69 if [ ${build} -eq 1 ]; then 70 70 ./jenkins/jenkins.sh ./jenkins/ross-debian_linux-binaries-python 71 72 if [ $? -ne 0 ]; then 73 echo 'Build failed' 74 exit 1 75 fi 71 76 fi 72 77 -
TabularUnified issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh ¶
r25896 r25900 45 45 46 46 skip_tests=0 47 while [ $# -gt 0 ]; do 48 case $1 in49 -s|--skiptests) skip_tests=1; ;; 50 *) echo "Unknown parameter passed: $1"; exit 1;;51 esac 52 shift 47 48 if [ $# -eq 1 ]; then 49 case $1 in 50 -s|--skiptests) skip_tests=1; ;; 51 *) echo "Unknown parameter passed: $1"; exit 1 ;; 52 esac 53 53 done 54 54 … … 65 65 mkdir ${PKG} 66 66 67 # Add /modify required binaries and libraries67 # Add required binaries and libraries to package and modify them where needed 68 68 cd ${ISSM_DIR}/bin 69 69 … … 153 153 svn cleanup --remove-ignored --remove-unversioned test # Clean up test directory (before copying to package) 154 154 echo "Copying assets to package: ${PKG}" 155 cp -rf bin examples lib scripts test ${PKG} /155 cp -rf bin examples lib scripts test ${PKG} 156 156 mkdir ${PKG}/execution 157 157 echo "Cleaning up unneeded/unwanted files" -
TabularUnified issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python.sh ¶
r25896 r25900 44 44 45 45 skip_tests=0 46 while [ $# -gt 0 ]; do 47 case $1 in48 -s|--skiptests) skip_tests=1; ;; 49 *) echo "Unknown parameter passed: $1"; exit 1;;50 esac 51 shift 46 47 if [ $# -eq 1 ]; then 48 case $1 in 49 -s|--skiptests) skip_tests=1; ;; 50 *) echo "Unknown parameter passed: $1"; exit 1 ;; 51 esac 52 52 done 53 53 … … 58 58 mkdir ${PKG} 59 59 60 # Add /modify required binaries and libraries60 # Add required binaries and libraries to package and modify them where needed 61 61 cd ${ISSM_DIR}/bin 62 62 … … 152 152 svn cleanup --remove-ignored --remove-unversioned test # Clean up test directory (before copying to package) 153 153 echo "Copying assets to package: ${PKG}" 154 cp -rf bin examples lib scripts test ${PKG} /154 cp -rf bin examples lib scripts test ${PKG} 155 155 mkdir ${PKG}/execution 156 156 ${ISSM_DIR}/scripts/py_to_pyc.sh ${PKG}/bin # Compile Python source files -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-binaries-matlab.sh ¶
r25896 r25900 98 98 if [ ${build} -eq 1 ]; then 99 99 ./jenkins/jenkins.sh ./jenkins/pine_island-mac-binaries-matlab 100 101 if [ $? -ne 0 ]; then 102 echo 'Build failed' 103 exit 1 104 fi 100 105 fi 101 106 -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-binaries-python.sh ¶
r25896 r25900 98 98 if [ ${build} -eq 1 ]; then 99 99 ./jenkins/jenkins.sh ./jenkins/pine_island-mac-binaries-python 100 101 if [ $? -ne 0 ]; then 102 echo 'Build failed' 103 exit 1 104 fi 100 105 fi 101 106 -
TabularUnified issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh ¶
r25896 r25900 167 167 svn cleanup --remove-ignored --remove-unversioned test # Clean up test directory (before copying to package) 168 168 echo "Copying assets to package: ${PKG}" 169 cp -rf bin examples lib scripts test ${PKG} /169 cp -rf bin examples lib scripts test ${PKG} 170 170 mkdir ${PKG}/execution 171 171 cp packagers/mac/issm-executable_entitlements.plist ${PKG}/bin/entitlements.plist -
TabularUnified issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python.sh ¶
r25896 r25900 105 105 fi 106 106 107 # Clean up from previous packaging 108 echo "Cleaning up existing assets" 109 cd ${ISSM_DIR} 110 rm -rf ${PKG} ${COMPRESSED_PKG} 111 mkdir ${PKG} 112 107 113 # Add required binaries and libraries to package and modify them where needed 108 114 cd ${ISSM_DIR}/bin … … 195 201 svn cleanup --remove-ignored --remove-unversioned test # Clean up test directory (before copying to package) 196 202 echo "Copying assets to package: ${PKG}" 197 cp -rf bin examples lib scripts test ${PKG} /203 cp -rf bin examples lib scripts test ${PKG} 198 204 mkdir ${PKG}/execution 199 cp packagers/mac/issm-executable_entitlements.plist ${PKG}/bin/entitlements.plist200 205 ${ISSM_DIR}/scripts/py_to_pyc.sh ${PKG}/bin # Compile Python source files 201 206 echo "Cleaning up unneeded/unwanted files"
Note:
See TracChangeset
for help on using the changeset viewer.