Changeset 28192


Ignore:
Timestamp:
03/27/24 12:50:23 (12 months ago)
Author:
jdquinn
Message:

CHG: Corrected test suites and packaging

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  
    3434## Constants
    3535#
    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 excluded
     36MATLAB_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
    3737MATLAB_PATH="/usr/local/MATLAB/R2023b"
    3838
  • TabularUnified issm/trunk-jpl/packagers/linux/complete-issm-linux-binaries-python-3.sh

    r28175 r28192  
    3535#
    3636PKG="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 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
     37PYTHON_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
    3838
    3939COMPRESSED_PKG="${PKG}.tar.gz"
  • TabularUnified issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-matlab.sh

    r28189 r28192  
    125125fi
    126126
    127 echo "Moving PROJ assets to share/"
     127echo "Moving PROJ assets to bin/ and share/"
    128128if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
     129        cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo .
    129130        mkdir ${ISSM_DIR}/share 2> /dev/null
    130131        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  
    119119fi
    120120
    121 echo "Moving PROJ assets to share/"
     121echo "Moving PROJ assets to bin/ and share/"
    122122if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
     123        cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo .
    123124        mkdir ${ISSM_DIR}/share 2> /dev/null
    124125        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  
    6464## Constants
    6565#
    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 excluded
     66MATLAB_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
    6767MATLAB_PATH="/Applications/MATLAB_R2023b.app"
    6868PKG="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  
    6565#
    6666PKG="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 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
     67PYTHON_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
    6868REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/intel/python/3"
    6969SIGNED_REPO_COPY="./signed"
  • TabularUnified issm/trunk-jpl/packagers/mac/complete-issm-mac-silicon-binaries-matlab.sh

    r28175 r28192  
    6464## Constants
    6565#
    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 excluded
     66MATLAB_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
    6767MATLAB_PATH="/Applications/MATLAB_R2023b.app"
    6868PKG="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  
    6565#
    6666PKG="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: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 excluded
     67PYTHON_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
    6868REPO_BASE_URL="https://issm.ess.uci.edu/svn/issm-binaries/mac/silicon/python/3"
    6969SIGNED_REPO_COPY="./signed"
  • TabularUnified issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-matlab.sh

    r28175 r28192  
    127127fi
    128128
    129 echo "Moving PROJ assets to share/"
     129echo "Moving PROJ assets to bin/ and share/"
    130130if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
     131        cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo .
    131132        mkdir ${ISSM_DIR}/share 2> /dev/null
    132133        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  
    120120fi
    121121
    122 echo "Moving PROJ assets to share/"
     122echo "Moving PROJ assets to bin/ and share/"
    123123if [ -d ${ISSM_DIR}/externalpackages/proj/install/share/proj ]; then
     124        cp ${ISSM_DIR}/externalpackages/proj/install/bin/projinfo .
    124125        mkdir ${ISSM_DIR}/share 2> /dev/null
    125126        cp -R ${ISSM_DIR}/externalpackages/proj/install/share/proj ${ISSM_DIR}/share
Note: See TracChangeset for help on using the changeset viewer.