Changeset 22757
- Timestamp:
- 05/10/18 10:20:20 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl
-
issm/trunk-jpl/externalpackages/mpich/install-3.0-linux64-static.sh
r21728 r22757 1 1 #!/bin/bash 2 2 set -eu 3 4 export CXXFLAGS="-fPIC" 5 export CFLAGS="-fPIC" 6 export FFLAGS="-fPIC" 3 7 4 8 #Some cleanup … … 16 20 rm -rf mpich-3.0.4 17 21 18 export CXXFLAGS='-fPIC'19 export CFLAGS='-fPIC'20 export FFLAGS='-fPIC'21 22 22 #Configure mpich 23 23 cd src 24 24 ./configure \ 25 --prefix="$ISSM_DIR/externalpackages/mpich/install" \ 26 --disable-shared \ 25 --prefix="$ISSM_DIR/externalpackages/mpich/install" 27 26 28 27 #Compile mpich (this new version supports parallel make) -
issm/trunk-jpl/externalpackages/mpich/install-3.2-linux64-static.sh
r21692 r22757 19 19 cd src 20 20 ./configure \ 21 --prefix="$ISSM_DIR/externalpackages/mpich/install" \ 22 --disable-shared \ 21 --prefix="$ISSM_DIR/externalpackages/mpich/install" 23 22 24 23 #Compile mpich (this new version supports parallel make) -
issm/trunk-jpl/externalpackages/petsc/install-3.6-linux64-static.sh
r20606 r22757 30 30 --download-fblaslapack=1 \ 31 31 --download-scalapack=1 \ 32 --with-pic=1 33 32 --CFLAGS="-fPIC" \ 33 --CC_LINKER_FLAGS="-fPIC" \ 34 --CXXFLAGS="-fPIC" \ 35 --FFLAGS="-fPIC" \ 36 --FC_LINKER_FLAGS="-fPIC" 37 34 38 #Compile and intall 35 39 make -
issm/trunk-jpl/externalpackages/petsc/install-3.7-linux64-static.sh
r21692 r22757 30 30 --download-fblaslapack=1 \ 31 31 --download-scalapack=1 \ 32 --with-pic=1 32 --COPTFLAGS="-fPIC" \ 33 --CXXOPTFLAGS="-fPIC" \ 34 --FOPTFLAGS="-fPIC" 33 35 34 36 #Compile and intall -
issm/trunk-jpl/externalpackages/petsc/install-3.7-macosx64-static.sh
r21692 r22757 29 29 --download-mumps=1 \ 30 30 --download-fblaslapack=1 \ 31 --download-scalapack=1 31 --download-scalapack=1 \ 32 --COPTFLAGS="-fPIC" \ 33 --CXXOPTFLAGS="-fPIC" \ 34 --FOPTFLAGS="-fPIC" 32 35 33 36 #Compile and intall -
issm/trunk-jpl/jenkins/jenkins.sh
r22686 r22757 296 296 cd $ISSM_DIR/test/NightlyRun 297 297 if [ "$OS" = "win" ]; then 298 $MATLAB_PATH/bin/matlab -no jvm -nosplash-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 &299 else 300 $MATLAB_PATH/bin/matlab -no jvm -nosplash-r "addpath $ISSM_DIR/src/m/dev; devpath; addpath $ISSM_DIR/nightlylog/; matlab_run$i" -logfile $ISSM_DIR/nightlylog/matlab_log$i.log &298 $MATLAB_PATH/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -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 & 299 else 300 $MATLAB_PATH/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "addpath $ISSM_DIR/src/m/dev; devpath; addpath $ISSM_DIR/nightlylog/; matlab_run$i" -logfile $ISSM_DIR/nightlylog/matlab_log$i.log & 301 301 fi 302 302 done … … 470 470 echo 'end' >> $FILE 471 471 472 $MATLAB_PATH/bin/matlab -no splash -nodisplay-r "addpath $ISSM_DIR/src/m/dev; devpath; addpath $ISSM_DIR/nightlylog/; runme" -logfile $ISSM_DIR/nightlylog/$LOG_FILE472 $MATLAB_PATH/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "addpath $ISSM_DIR/src/m/dev; devpath; addpath $ISSM_DIR/nightlylog/; runme" -logfile $ISSM_DIR/nightlylog/$LOG_FILE 473 473 echo "starting: $(basename $dir)" >> $ISSM_DIR/nightlylog/matlab_log_examples.log 474 474 cat $ISSM_DIR/nightlylog/$LOG_FILE >> $ISSM_DIR/nightlylog/matlab_log_examples.log -
issm/trunk-jpl/jenkins/macosx_pine-island_dakota_static
r21871 r22757 14 14 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \ 15 15 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \ 16 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi 16 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich -lmpl -lpmpich" \ 17 17 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \ 18 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install /\19 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install /\18 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 19 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 20 20 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \ 21 21 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \ … … 23 23 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install \ 24 24 --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install \ 25 --with-chaco-dir= "$ISSM_DIR/externalpackages/chaco/install"\25 --with-chaco-dir=$ISSM_DIR/externalpackages/chaco/install \ 26 26 --with-fortran-lib="/usr/local/gfortran/lib/libgfortran.a /usr/local/gfortran/lib/libquadmath.a /usr/local/gfortran/lib/gcc/x86_64-apple-darwin14/5.2.0/libgcc.a" \ 27 27 --with-numthreads=4' … … 39 39 cmake install.sh 40 40 chaco install-macosx64.sh 41 mpich install-3. 2-macosx64-static.sh41 mpich install-3.0-macosx64-static.sh 42 42 m1qn3 install.sh 43 petsc install-3. 7-macosx64-static.sh43 petsc install-3.6-macosx64-static.sh 44 44 triangle install-macosx64.sh 45 45 boost install-1.55-macosx-el_capitan.sh -
issm/trunk-jpl/jenkins/macosx_pine-island_static
r21694 r22757 15 15 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \ 16 16 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \ 17 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi " \18 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install 19 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install /\20 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install /\17 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich -lmpl -lpmpich" \ 18 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \ 19 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 20 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 21 21 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \ 22 22 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \ … … 36 36 EXTERNALPACKAGES="autotools install.sh 37 37 cmake install.sh 38 mpich install-3. 2-macosx64-static.sh38 mpich install-3.0-macosx64-static.sh 39 39 m1qn3 install.sh 40 petsc install-3. 7-macosx64-static.sh40 petsc install-3.6-macosx64-static.sh 41 41 triangle install-macosx64.sh 42 42 shell2junit install.sh" -
issm/trunk-jpl/packagers/macosx-dakota/package.sh
r21728 r22757 11 11 cd $ISSM_DIR/test/NightlyRun 12 12 rm matlab.log 13 /Applications/MATLAB_R2015b.app/bin/matlab -no jvm -nosplash-r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log13 /Applications/MATLAB_R2015b.app/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log 14 14 15 15 if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then -
issm/trunk-jpl/packagers/macosx/package.sh
r21728 r22757 11 11 cd $ISSM_DIR/test/NightlyRun 12 12 rm matlab.log 13 $MATLAB_DIR/bin/matlab -nojvm -nosplash-r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log13 /Applications/MATLAB_R2015b.app/bin/matlab -nodisplay -nojvm -nosplash -nodesktop -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log 14 14 15 15 if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then -
issm/trunk-jpl/packagers/ubuntu/package.sh
r21595 r22757 5 5 cat generic_static.m | sed -e "s/generic_static/generic/g" > generic.m 6 6 echo "move mpiexec to bin" 7 cp ../externalpackages/mpich/install/bin/mpiexec . 8 cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy . 7 9 8 10 #Check that test101 runs 9 11 cd $ISSM_DIR/test/NightlyRun 10 12 rm matlab.log 11 $MATLAB_DIR/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log13 /usr/local/MATLAB/R2015a/bin/matlab -nojvm -nosplash -r "try, addpath $ISSM_DIR/bin $ISSM_DIR/lib; runme('id',101);exit; catch me,fprintf('%s',getReport(me)); exit; end" -logfile matlab.log 12 14 13 15 if [[ $(cat matlab.log | grep -c SUCCESS) -lt 10 ]]; then -
issm/trunk-jpl/src
- Property svn:mergeinfo changed
/issm/trunk/src merged: 22169-22170
- Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.