Changeset 27428
- Timestamp:
- 11/26/22 16:34:30 (2 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/valgrind/install-linux.sh
r25706 r27428 3 3 4 4 5 ## Constants 6 # 7 PREFIX="${ISSM_DIR}/externalpackages/valgrind/install" # Set to location where external package should be installed 8 5 9 # Clean up 6 rm -rf install10 rm -rf ${PREFIX} src 7 11 8 # Download development version 9 git clone git://sourceware.org/git/valgrind.git install 12 # Download development version (the current release never supports the latest 13 # OS X releases) 14 git clone git://sourceware.org/git/valgrind.git src 10 15 11 16 # Configure 12 cd install17 cd src 13 18 ./autogen.sh 14 19 ./configure \ 15 --prefix="$ ISSM_DIR/externalpackages/valgrind/install" \20 --prefix="${PREFIX}" \ 16 21 --enable-only64bit 17 22 -
issm/trunk-jpl/externalpackages/valgrind/install-mac.sh
r25860 r27428 8 8 9 9 # Clean up 10 rm -rf ${PREFIX} 10 rm -rf ${PREFIX} src 11 11 12 12 # Download development version (the current release never supports the latest 13 13 # OS X releases) 14 git clone git://sourceware.org/git/valgrind.git ${PREFIX}14 git clone git://sourceware.org/git/valgrind.git src 15 15 16 16 # Configure 17 cd install17 cd src 18 18 ./autogen.sh 19 19 ./configure \ -
issm/trunk-jpl/jenkins/jenkins.sh
r27202 r27428 28 28 SERVER='https://ross.ics.uci.edu/jenkins' 29 29 30 # Get configuration31 # Source config file{{{30 # Get configuration 31 # Source config file {{{ 32 32 if [ $# -ne 1 ]; then 33 33 #no config file specified: exit … … 46 46 EXAMPLES_TEST=0 47 47 48 # Initialize resource variables (to avoid "i<=: syntax error: operand expected" 49 # in for loops) 48 # Initialize resource variables (to avoid "i<=: syntax error: operand expected" in for loops) 50 49 NUMCPUS_INSTALL=1 51 50 NUMCPUS_RUN=1 52 51 53 # source configuration script52 # Source configuration script 54 53 source $1; 55 # }}}54 # }}} 56 55 57 56 if [[ $EXAMPLES_TEST -eq 1 && $MATLAB_TEST+$PYTHON_TEST+$JAVASCRIPT_TEST -ne 0 ]]; then … … 60 59 fi 61 60 62 # Install ISSM63 # Determining installation type depending on svn changes{{{61 # Install ISSM 62 # Determining installation type depending on svn changes {{{ 64 63 echo "======================================================"; 65 64 echo " Determining Installation type " … … 92 91 echo " " 93 92 94 ################################### 95 ### Determine installation type ### 96 ################################### 93 ## Determine installation type 94 # 97 95 echo "Determining installation type" 98 96 … … 107 105 fi 108 106 109 # If the Makefile or m4 di irectory were changed in any way or if certain107 # If the Makefile or m4 directory were changed in any way or if certain 110 108 # binary files from a previous compilation do not exist, reconfigure 111 109 if [ ! -z "$(cat ${ISSM_DIR}/TEMP | grep -e "Makefile.am" -e "m4" )" ] || … … 145 143 echo "Recording current svn version: $SVN_REVISION_1" 146 144 echo $SVN_REVISION_1 > ${ISSM_DIR}/svn_revision_old 147 # }}}145 # }}} 148 146 149 147 ## External Packages … … 153 151 NUMPACKAGES=$(($(echo ${EXTERNALPACKAGES} | wc -w ) / 2)) 154 152 155 # Jenkins XML files for individual packages153 # Jenkins XML files for individual packages 156 154 EXTERNAL_TEST_FILE="${ISSM_DIR}/nightlylog/results/external.xml" 157 155 mkdir -p ${ISSM_DIR}/nightlylog/results 158 156 echo "<testsuite tests=\"$NUMPACKAGES\">" > $EXTERNAL_TEST_FILE 159 157 160 # Need a source here for when builds start midway through installation of externalpackages .158 # Need a source here for when builds start midway through installation of externalpackages 161 159 source ${ISSM_DIR}/etc/environment.sh 162 163 if [ "${OS}" == CYGWIN* ]; then164 echo " == WINDOWS ENVIRONMENT DETECTED =="165 source ${ISSM_DIR}/externalpackages/windows/windows_environment.sh166 fi167 160 168 161 EXTERNALPACKAGES_FAILED=0; … … 174 167 PACKAGEINST=$(echo $EXTERNALPACKAGES | cut -d " " -f $NUM2-$NUM2) 175 168 176 # install if requested or if previous install has not been successful169 # Install if requested or if previous install has not been successful 177 170 if [ "${ISSM_EXTERNALPACKAGES}" == "yes" ]; then # NOTE: Removed check on if 'install' directory exist 178 171 cd ${ISSM_DIR}/externalpackages/$PACKAGENAME … … 199 192 echo '</failure>' >> $EXTERNAL_TEST_FILE 200 193 echo '</testcase>' >> $EXTERNAL_TEST_FILE 201 EXTERNALPACKAGES_FAILED=1; 194 echo '</testsuite>' >> $EXTERNAL_TEST_FILE 195 exit 1; 202 196 else 203 197 echo "<testcase classname=\"externalpackages\" name=\"$PACKAGENAME\"/>" >> $EXTERNAL_TEST_FILE … … 224 218 echo '</testsuite>' >> $EXTERNAL_TEST_FILE 225 219 226 if [ $EXTERNALPACKAGES_FAILED -eq 1 ]; then227 echo "===================================================================================================";228 echo " ERROR: One or more of the externalpackages has failed. Skipping everything remaining steps. ";229 echo "===================================================================================================";230 exit 1;231 fi232 233 220 # Source here to include any newly-installed external packages on the path 234 221 source ${ISSM_DIR}/etc/environment.sh … … 246 233 # independent from running JavaScript tests (one should be able to do the 247 234 # former without having to do the latter). 248 # - Revisit enviro ment variables (especially EMCC_CFLAGS) once support for235 # - Revisit environment variables (especially EMCC_CFLAGS) once support for 249 236 # Fortran has been accomplished. 250 237 # … … 261 248 fi 262 249 263 # }}}264 # ISSM compilation yes/no(ISSM_COMPILATION) {{{250 # }}} 251 # ISSM compilation yes/no (ISSM_COMPILATION) {{{ 265 252 if [ "${ISSM_COMPILATION}" == "yes" ]; then 266 253 cd $ISSM_DIR … … 285 272 fi 286 273 287 # 4: compile and install ISSM274 # Compile and install ISSM 288 275 echo "======================================================" 289 276 echo " Compiling ISSM " 290 277 echo "======================================================" 291 278 if [ $NUMCPUS_INSTALL -gt 1 ]; then 292 echo "Making with ${NUMCPUS_INSTALL} cpus"279 echo "Making with ${NUMCPUS_INSTALL} CPUs" 293 280 294 281 # To debug compilation/linking, add 'V=1' option to the call to make … … 313 300 echo "Skipping ISSM compilation" 314 301 else 315 echo "ISSM_COMPILATION supported values are: yes and no. Exiting..." >&2 # Error message to stderr.302 echo "ISSM_COMPILATION supported values are: yes and no. Exiting..." >&2 # Redirect error messages to stderr 316 303 exit 1 317 304 fi 318 #}}} 319 320 #Restore CXX/CC to their previous values 305 # }}} 306 307 # Restore CC/CXX to their previous values 308 export CC=$CC_PREVIOUS 321 309 export CXX=$CXX_PREVIOUS 322 export CC=$CC_PREVIOUS 323 324 #matlab tests 325 # {{{ 310 311 # MATLAB tests {{{ 326 312 if [ $MATLAB_TEST -eq 1 ]; then 327 313 MINGW=0 … … 333 319 fi 334 320 335 # Launch all tests on different cpus321 # Launch all tests on different CPUs 336 322 for (( i=1;i<=$NUMCPUS_RUN;i++ )); do 337 # Launch matlaband the nightly run script323 # Launch MATLAB and the nightly run script 338 324 cat > ${ISSM_DIR}/nightlylog/matlab_run$i.m << EOF 339 325 warning off %necessary to avoid a log of several Go for parallel runs … … 358 344 cd $ISSM_DIR/test/NightlyRun 359 345 360 # NOTE: We redirect all output to logfile in order to catch certain errors. For some reason, this does not work under Windows: the log ifle option must be used and process must be run in background361 if [[ "${OS}" == CYGWIN* ||${MINGW} -eq 1 ]]; then346 # NOTE: We redirect all output to logfile in order to catch certain errors. For some reason, this does not work under Windows: the logfile option must be used and process must be run in background 347 if [[ ${MINGW} -eq 1 ]]; then 362 348 $MATLAB_PATH/bin/matlab -nodesktop -nosplash -nojvm -r "addpath ${ISSM_DIR_WIN}/src/m/dev; devpath; addpath ${ISSM_DIR_WIN}/nightlylog; matlab_run$i" -logfile ${ISSM_DIR_WIN}/nightlylog/matlab_log$i.log & 363 349 else … … 371 357 # - Replace by adding -wait option to above calls to matlab? 372 358 # 373 if [[ "${OS}" == CYGWIN* ]]; then 374 sleep 5; 375 echo "Waiting for MATLAB to exit" 376 pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}') 377 echo '-----------------------------' 378 echo "pid: ${pid}" 379 echo '-----------------------------' 380 while [ -n "${pid}" ]; do 381 pid=$(ps aux -W | grep MATLAB | awk '{printf("%s\n","MATLAB");}') 382 sleep 1; 383 done 384 echo "DONE!" 385 elif [[ ${MINGW} -eq 1 ]]; then 386 # NOTE: The PID query used here may work as well on Cygwin. If so, combine the two conditional blocks. 359 if [[ ${MINGW} -eq 1 ]]; then 387 360 sleep 5; 388 361 echo "Waiting for MATLAB to exit" … … 429 402 done 430 403 431 # filter out windows characters:404 # Filter out Windows characters 432 405 cat matlab_log.log | tr -cd '\11\12\40-\176' > matlab_log.log2 && mv matlab_log.log2 matlab_log.log 433 406 fi 434 407 # }}} 435 408 436 # Python tests 409 # Python tests # {{{ 437 410 # 438 411 # TODO: Figure out why "Running Python test for Rank $i" is printed twice for each CPU 439 # {{{412 # 440 413 if [ $PYTHON_TEST -eq 1 ]; then 441 # Launch all tests on different cpus414 # Launch all tests on different CPUs 442 415 export PYTHONPATH="${ISSM_DIR}/src/m/dev" 443 416 export PYTHONSTARTUP="${PYTHONPATH}/devpath.py" 444 export PYTHONUNBUFFERED=1 # we don't want python to buffer otherwise issm.exe output is not captured417 export PYTHONUNBUFFERED=1 # We don't want Python to buffer otherwise issm.exe output is not captured 445 418 for (( i=1;i<=$NUMCPUS_RUN;i++ )) 446 419 do … … 474 447 rm -f $ISSM_DIR/execution/*/ADOLC-* 475 448 476 # Examples Tests 477 # {{{ 449 # Examples Tests # {{{ 478 450 if [ $EXAMPLES_TEST -eq 1 ]; then 479 451 export MATLAB_PATH … … 482 454 # }}} 483 455 484 # Process logs to be JUnit compatible 485 #{{{ 456 # Process logs to be JUnit compatible # {{{ 486 457 cd $ISSM_DIR/nightlylog 487 458 source $ISSM_EXT_DIR/shell2junit/install/bin/sh2ju.sh … … 489 460 490 461 if [ $MATLAB_TEST -eq 1 ]; then 491 # number tests:462 # Number tests 492 463 numtests=`cat matlab_log.log | grep "\-\-\-\-\-\-\-\-starting" | wc -l` 493 464 testlist=`cat matlab_log.log | grep "\-\-\-\-\-\-\-\-starting" | sed 's/----------------starting://g' | sed 's/-//g'` … … 515 486 516 487 if [ $PYTHON_TEST -eq 1 ]; then 517 # number tests:488 # Number tests 518 489 numtests=`cat python_log.log | grep "\-\-\-\-\-\-\-\-starting" | wc -l` 519 490 testlist=`cat python_log.log | grep "\-\-\-\-\-\-\-\-starting" | sed 's/----------------starting://g' | sed 's/-//g'` … … 569 540 # Clean up execution directory 570 541 rm -rf $ISSM_DIR/execution/* 571 # }}}542 # }}} -
issm/trunk-jpl/jenkins/ross-debian_linux-full-valgrind
r27427 r27428 51 51 netcdf install-4.7-parallel.sh 52 52 proj install-6.sh 53 sqlite install.sh54 53 gdal install-3-python.sh 55 54 gshhg install.sh
Note:
See TracChangeset
for help on using the changeset viewer.