Changeset 28192
- Timestamp:
- 03/27/24 12:50:23 (12 months ago)
- Location:
- issm/trunk-jpl/packagers
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/packagers/linux/complete-issm-linux-binaries-matlab.sh ¶
r28175 r28192 34 34 ## Constants 35 35 # 36 MATLAB_NROPTIONS="'benchmark','all','exclude',[125 ,126,129,234,235,418,420,435,444,445,456,701,702,703,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1201,1202,1203,1204,1205,1206,1207,1208,1301,1302,1303,1304,1401,1402,1601,1602,2002,2003,2004,2006,2007,2008,2010,2011,2012,2013,2020,2021,2051,2052,2053,2084,2085,2090,2091,2092,2101,2424,2425,3001:3300,3480,3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded36 MATLAB_NROPTIONS="'benchmark','all','exclude',[125:126,129,234:235,418,420,435,444:445,456,701:703,1101:1110,1201:1208,1301:1304,1401:1402,1601:1602,2002,2004,2006,2010:2013,2020:2021,2051:2053,2084:2085,2090:2092,2101,2424:2425,3001:3300,3480:3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 37 37 MATLAB_PATH="/usr/local/MATLAB/R2023b" 38 38 -
TabularUnified issm/trunk-jpl/packagers/linux/complete-issm-linux-binaries-python-3.sh ¶
r28175 r28192 35 35 # 36 36 PKG="ISSM-Linux-Python-3" # Name of directory to copy distributable files to 37 PYTHON_NROPTIONS="--benchmark all --exclude 125 126 129 234 235 418 420 435 444 445 456 701 702 703 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1201 1202 1203 1204 1205 1206 1207 1208 1301 1302 1303 1304 1401 1402 1601 1602 2002 2003 2004 2005 2006 2007 2008 2010 2011 2012 2013 2020 2021 2051 2052 2053 2084 2085 2090 2091 2092 2101 2424 2425 3001:3300 34803481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded37 PYTHON_NROPTIONS="--benchmark all --exclude 125:126 129 234:235 418 420 435 444:445 456 701:703 1101:1110 1201:1208 1301:1304 1401:1402 1601:1602 2002 2004 2010:2013 2020:2021 2051:2053 2084:2085 2090:2092 2101 2424:2425 3001:3300 3480:3481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 38 38 39 39 COMPRESSED_PKG="${PKG}.tar.gz" -
TabularUnified issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh ¶
r28189 r28192 125 125 fi 126 126 127 echo "Moving PROJ assets to share/"127 echo "Moving PROJ assets to bin/ and share/" 128 128 if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then 129 cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo . 129 130 mkdir ${ISSM_DIR}/share 2> /dev/null 130 131 cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share -
TabularUnified issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh ¶
r28189 r28192 119 119 fi 120 120 121 echo "Moving PROJ assets to share/"121 echo "Moving PROJ assets to bin/ and share/" 122 122 if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then 123 cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo . 123 124 mkdir ${ISSM_DIR}/share 2> /dev/null 124 125 cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-intel-binaries-matlab.sh ¶
r28166 r28192 64 64 ## Constants 65 65 # 66 MATLAB_NROPTIONS="'benchmark','all','exclude',[124 ,125,126,129,234,235,418,420,435,444,445,456,701,702,703,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1201,1202,1203,1204,1205,1206,1207,1208,1301,1302,1303,1304,1401,1402,1601,1602,2002,2003,2004,2005,2006,2007,2008,2010,2011,2012,2013,2020,2021,2051,2052,2053,2084,2085,2090,2091,2092,2101,2424,2425,3001:3300,3480,3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded66 MATLAB_NROPTIONS="'benchmark','all','exclude',[124:126,129,234:235,418,420,435,444:445,456,701:703,1101:1110,1201:1208,1301:1304,1401:1402,1601:1602,2002,2004,2010:2013,2020:2021,2051:2053,2084:2085,2090:2092,2101,2424:2425,3001:3300,3480:3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 67 67 MATLAB_PATH="/Applications/MATLAB_R2023b.app" 68 68 PKG="ISSM-macOS-Intel-MATLAB" # Name of directory to copy distributable files to -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-intel-binaries-python-3.sh ¶
r28147 r28192 65 65 # 66 66 PKG="ISSM-macOS-Intel-Python-3" # Name of directory to copy distributable files to 67 PYTHON_NROPTIONS="--benchmark all --exclude 124 125 126 129 234 235 418 420 435 444 445 456 701 702 703 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1201 1202 1203 1204 1205 1206 1207 1208 1301 1302 1303 1304 1401 1402 1601 1602 2002 2003 2004 2005 2006 2007 2008 2010 2011 2012 2013 2020 2021 2051 2052 2053 2084 2085 2090 2091 2092 2101 2424 2425 3001:3300 34803481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded67 PYTHON_NROPTIONS="--benchmark all --exclude 124:126 129 234:235 418 420 435 444:445 456 701:703 1101:1110 1201:1208 1301:1304 1401:1402 1601:1602 2002 2004 2010:2013 2020:2021 2051:2053 2084:2085 2090:2092 2101 2424:2425 3001:3300 3480:3481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 68 68 REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/python/3" 69 69 SIGNED_REPO_COPY="./signed" -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-silicon-binaries-matlab.sh ¶
r28175 r28192 64 64 ## Constants 65 65 # 66 MATLAB_NROPTIONS="'benchmark','all','exclude',[119,124:126,129,216,234:235,274,418,420,423,430,433,435,441:442,444:445,448,456,462:464,470:476,508,517,544,546,701:703,808,1101:1110,1201:1208,1301:1304,1401:1402,1601:1602,2002 :2008,2010:2013,2020:2021,2051:2053,2084:2085,2090:2092,2101,2110:2113,2424:2425,3001:3300,3480:3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded66 MATLAB_NROPTIONS="'benchmark','all','exclude',[119,124:126,129,216,234:235,274,418,420,423,430,433,435,441:442,444:445,448,456,462:464,470:476,508,517,544,546,701:703,808,1101:1110,1201:1208,1301:1304,1401:1402,1601:1602,2002,2004,2010:2013,2020:2021,2051:2053,2084:2085,2090:2092,2101,2110:2113,2424:2425,3001:3300,3480:3481,4001:4100]" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 67 67 MATLAB_PATH="/Applications/MATLAB_R2023b.app" 68 68 PKG="ISSM-macOS-Silicon-MATLAB" # Name of directory to copy distributable files to -
TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-silicon-binaries-python-3.sh ¶
r28175 r28192 65 65 # 66 66 PKG="ISSM-macOS-Silicon-Python-3" # Name of directory to copy distributable files to 67 PYTHON_NROPTIONS="--benchmark all --exclude 119 124:126 129 216 234:235 274 418 420 423 430 433 435 441:442 444:445 448 456 462:464 470:476 508 517 544 546 701:703 808 1101:1110 1201:1208 1301:1304 1401:1402 1601:1602 2002 :20082010:2013 2020:2021 2051:2053 2084:2085 2090:2092 2101 2110:2113 2424:2425 3001:3300 3480:3481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded67 PYTHON_NROPTIONS="--benchmark all --exclude 119 124:126 129 216 234:235 274 418 420 423 430 433 435 441:442 444:445 448 456 462:464 470:476 508 517 544 546 701:703 808 1101:1110 1201:1208 1301:1304 1401:1402 1601:1602 2002 2004 2010:2013 2020:2021 2051:2053 2084:2085 2090:2092 2101 2110:2113 2424:2425 3001:3300 3480:3481 4001:4100" # NOTE: Combination of test suites from basic, Dakota, and Solid Earth builds, with tests that require a restart and those that require the JVM excluded 68 68 REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/silicon/python/3" 69 69 SIGNED_REPO_COPY="./signed" -
TabularUnified issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh ¶
r28175 r28192 127 127 fi 128 128 129 echo "Moving PROJ assets to share/"129 echo "Moving PROJ assets to bin/ and share/" 130 130 if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then 131 cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo . 131 132 mkdir ${ISSM_DIR}/share 2> /dev/null 132 133 cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share -
TabularUnified issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh ¶
r28175 r28192 120 120 fi 121 121 122 echo "Moving PROJ assets to share/"122 echo "Moving PROJ assets to bin/ and share/" 123 123 if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then 124 cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo . 124 125 mkdir ${ISSM_DIR}/share 2> /dev/null 125 126 cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
Note:
See TracChangeset
for help on using the changeset viewer.