source:
issm/oecreview/Archive/19101-20495/ISSM-20401-20402.diff
Last change on this file was 20498, checked in by , 9 years ago | |
---|---|
File size: 39.0 KB |
-
../trunk-jpl/jenkins/linux64_murdo
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/usr/local/matlab80/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR\11 --with-matlab-dir=$MATLAB_PATH \12 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \13 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \14 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich" \15 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \16 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \17 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \18 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \19 --with-python-dir=$ISSM_DIR/externalpackages/python/install\20 --with-python-numpy-dir=$ISSM_DIR/externalpackages/python/install/lib/python2.7/site-packages/numpy/core/include/numpy\21 --with-chaco-dir="$ISSM_DIR/externalpackages/chaco/install" \22 --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install \23 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install/ \24 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.6/ -lgfortran" \25 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \26 --with-numthreads=18 \27 --enable-development \28 --enable-debugging '29 30 #PYTHON and MATLAB testing31 MATLAB_TEST=132 PYTHON_TEST=133 34 #-----------------------------------#35 # 3: External packages installation #36 #-----------------------------------#37 38 #List of external pakages to be installed and their installation scripts39 EXTERNALPACKAGES="autotools install.sh40 mpich install-3.0-linux64.sh41 cmake install.sh42 petsc install-3.5-linux64.sh43 triangle install-linux64.sh44 boost install.sh45 dakota install-5.3.1-linux64.sh46 chaco install.sh47 python install-2.7.3-linux64.sh48 nose install-linux64-python2.sh49 blas install-linux64.sh50 lapack install-linux64.sh51 git install.sh52 m1qn3 install.sh53 numpy install-linux64.sh54 scipy install-linux64.sh55 hdf5 install.sh56 netcdf install.sh57 netcdf-python install.sh58 shell2junit install.sh"59 60 #---------------------#61 # 4: ISSM Compilation #62 #---------------------#63 64 #ISSM_COMPILATION can have 2 values:65 # - "yes" compile ISSM66 # - "no" do not compile ISSM67 ISSM_COMPILATION="yes"68 69 #------------------------#70 # 5: Nightly run options #71 #------------------------#72 73 #number of cpus used in ISSM installation and compilation (one is usually74 #safer as some packages are very sensitive to parallel compilation)75 NUMCPUS_INSTALL=876 77 #number of cpus used in the nightly runs.78 NUMCPUS_RUN=879 80 #Nightly run options. The matlab routine runme.m will be called81 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable82 #by Matlab and runme.m83 #ex: "'id',[101 102 103]"84 MATLAB_NROPTIONS="'exclude',[119,514,701,702,435]"85 PYTHON_NROPTIONS="--exclude 119 514 701 702 435" -
../trunk-jpl/jenkins/linux64_murdo_python
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #ISSM CONFIGURATION7 ISSM_CONFIG='--prefix=$ISSM_DIR\8 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \9 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \10 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich" \11 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \12 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \13 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \14 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \15 --with-python-dir=$ISSM_DIR/externalpackages/python/install\16 --with-python-numpy-dir=$ISSM_DIR/externalpackages/python/install/lib/python2.7/site-packages/numpy/core/include/numpy\17 --with-chaco-dir="$ISSM_DIR/externalpackages/chaco/install" \18 --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install \19 --with-boost-dir=$ISSM_DIR/externalpackages/boost/install/ \20 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.6/ -lgfortran" \21 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \22 --with-numthreads=18 \23 --enable-development \24 --enable-debugging '25 26 #MATLAB path27 MATLAB_PATH=''28 29 #PYTHON and MATLAB testing30 MATLAB_TEST=031 PYTHON_TEST=132 33 #execution path used for parallel runs34 EXECUTION_PATH=$ISSM_DIR/execution35 36 #repo:37 #We have had issues with upgrading SVN versions. As such, it is nescessary to specify which SVN to use.38 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"39 40 #-----------------------------------#41 # 3: External packages installation #42 #-----------------------------------#43 44 #List of external pakages to be installed and their installation scripts45 EXTERNALPACKAGES="autotools install.sh46 mpich install-3.0-linux64.sh47 cmake install.sh48 petsc install-3.5-linux64.sh49 triangle install-linux64.sh50 boost install.sh51 dakota install-5.3.1-linux64.sh52 chaco install.sh53 python install-2.7.3-linux64.sh54 nose install-linux64-python2.sh55 blas install-linux64.sh56 lapack install-linux64.sh57 git install.sh58 m1qn3 install.sh59 numpy install-linux64.sh60 scipy install-linux64.sh61 hdf5 install.sh62 netcdf install.sh63 netcdf-python install.sh64 shell2junit install.sh"65 66 67 #---------------------#68 # 4: ISSM Compilation #69 #---------------------#70 71 #ISSM_COMPILATION can have 2 values:72 # - "yes" compile ISSM73 # - "no" do not compile ISSM74 ISSM_COMPILATION="yes"75 76 #------------------------#77 # 5: Nightly run options #78 #------------------------#79 80 #number of cpus used in ISSM installation and compilation (one is usually81 #safer as some packages are very sensitive to parallel compilation)82 NUMCPUS_INSTALL=883 84 #number of cpus used in the nightly runs.85 NUMCPUS_RUN=886 87 #Nightly run options. The matlab routine runme.m will be called88 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable89 #by Matlab and runme.m90 #ex: "'id',[101 102 103]"91 PYTHON_NROPTIONS="--exclude 119 514 701 702 435" -
../trunk-jpl/jenkins/linux64_murdo_ad
1 #2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/usr/local/matlab80/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR\11 --prefix=$ISSM_DIR \12 --without-kriging \13 --without-kml \14 --without-Gia \15 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \16 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \17 --with-matlab-dir=$MATLAB_PATH \18 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install '19 20 #PYTHON and MATLAB testing21 MATLAB_TEST=122 PYTHON_TEST=023 24 #execution path used for parallel runs25 EXECUTION_PATH=$ISSM_DIR/execution26 27 #repo:28 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"29 30 #-----------------------------------#31 # 3: External packages installation #32 #-----------------------------------#33 34 #List of external pakages to be installed and their installation scripts35 EXTERNALPACKAGES="autotools install.sh36 cmake install.sh37 mpich install-3.0-linux64.sh38 petsc install-3.5-linux64.sh39 metis install-5.0.1-linux64.sh40 triangle install-linux64.sh41 gsl install-linux64.sh42 adolc install.sh43 shell2junit install.sh"44 45 #---------------------#46 # 4: ISSM Compilation #47 #---------------------#48 49 #ISSM_COMPILATION can have 2 values:50 # - "yes" compile ISSM51 # - "no" do not compile ISSM52 ISSM_COMPILATION="yes"53 54 #------------------------#55 # 5: Nightly run options #56 #------------------------#57 58 #number of cpus used in ISSM installation and compilation (one is usually59 #safer as some packages are very sensitive to parallel compilation)60 NUMCPUS_INSTALL=861 62 #number of cpus used in the nightly runs.63 NUMCPUS_RUN=864 65 #Nightly run options. The matlab routine runme.m will be called66 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable67 #by Matlab and runme.m68 #ex: "'id',[101 102 103]"69 MATLAB_NROPTIONS="'benchmark','adolc','id',[3001:3019]"70 PYTHON_NROPTIONS="" -
../trunk-jpl/jenkins/linux64_murdo_ampi
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/usr/local/matlab80/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR\11 --without-kriging \12 --without-kml \13 --without-Gia \14 --with-gsl-dir=$ISSM_DIR/externalpackages/gsl/install \15 --with-adolc-dir=$ISSM_DIR/externalpackages/adolc/install \16 --with-ampi-dir=$ISSM_DIR/externalpackages/adjoinablempi/install \17 --with-matlab-dir=$MATLAB_PATH \18 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \19 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \20 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib/ -lmpich" \21 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install/ \22 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \23 --with-numthreads=18 \24 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \25 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \26 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.6/ -lgfortran" \27 --enable-development \28 29 #PYTHON and MATLAB testing30 MATLAB_TEST=131 PYTHON_TEST=032 33 #execution path used for parallel runs34 EXECUTION_PATH=$ISSM_DIR/execution35 36 #repo:37 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"38 39 #-----------------------------------#40 # 3: External packages installation #41 #-----------------------------------#42 43 #List of external pakages to be installed and their installation scripts44 EXTERNALPACKAGES="autotools install.sh45 cmake install.sh46 mpich install-3.0-linux64.sh47 petsc install-3.5-linux64.sh48 metis install-5.0.1-linux64.sh49 triangle install-linux64.sh50 gsl install-linux64.sh51 mercurial install.sh52 adjoinablempi install.sh53 adolc install-withampi.sh54 shell2junit install.sh"55 56 #---------------------#57 # 4: ISSM Compilation #58 #---------------------#59 60 #ISSM_COMPILATION can have 2 values:61 # - "yes" compile ISSM62 # - "no" do not compile ISSM63 ISSM_COMPILATION="yes"64 65 #------------------------#66 # 5: Nightly run options #67 #------------------------#68 69 #number of cpus used in ISSM installation and compilation (one is usually70 #safer as some packages are very sensitive to parallel compilation)71 NUMCPUS_INSTALL=172 73 #number of cpus used in the nightly runs.74 NUMCPUS_RUN=875 76 #Nightly run options. The matlab routine runme.m will be called77 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable78 #by Matlab and runme.m79 #ex: "'id',[101 102 103]"80 MATLAB_NROPTIONS="'benchmark','adolc','id',[3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3119]"81 PYTHON_NROPTIONS="" -
../trunk-jpl/jenkins/execute_shell
1 #!/bin/bash2 3 #some exports required4 export ISSM_DIR="$WORKSPACE"5 6 #which configuration are we using?7 case $Platform in8 master )9 configfile=linux64_murdo ;;10 imac-012301-gil )11 configfile=imac-012301-gil ;;12 windows )13 configfile=windows14 export PATH=/cygdrive/c/Cygwin/usr/bin:/cygdrive/c/Cygwin/bin:$PATH ;;15 16 esac17 18 #run19 cd "$WORKSPACE"20 source $ISSM_DIR/jenkins/jenkins.sh $ISSM_DIR/jenkins/$configfile -
../trunk-jpl/jenkins/execute_shell_ad
1 #!/bin/bash2 3 #some exports required4 export ISSM_DIR="$WORKSPACE"5 6 #which configuration are we using?7 case $AMPI in8 ampion )9 configfile=linux64_murdo_ampi ;;10 ampioff )11 configfile=linux64_murdo_ad ;;12 esac13 14 #run15 cd "$WORKSPACE"16 source $ISSM_DIR/jenkins/jenkins.sh $ISSM_DIR/jenkins/$configfile -
../trunk-jpl/jenkins/linux64_murdo_gia
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/usr/local/matlab80/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR\11 --with-matlab-dir=$MATLAB_PATH \12 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \13 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \14 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich" \15 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \16 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \17 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \18 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \19 --with-math77-dir=$ISSM_DIR/externalpackages/math77/install \20 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.6/ -lgfortran" \21 --with-gia=yes \22 --with-numthreads=18 \23 --enable-development \24 --enable-debugging '25 26 #PYTHON and MATLAB testing27 MATLAB_TEST=128 PYTHON_TEST=029 30 #execution path used for parallel runs31 EXECUTION_PATH=$ISSM_DIR/execution32 33 #repo:34 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"35 36 #-----------------------------------#37 # 3: External packages installation #38 #-----------------------------------#39 40 #List of external pakages to be installed and their installation scripts41 EXTERNALPACKAGES="autotools install.sh42 mpich install-3.0-linux64.sh43 cmake install.sh44 petsc install-3.5-linux64.sh45 triangle install-linux64.sh46 math77 install.sh47 shell2junit install.sh"48 49 50 #---------------------#51 # 4: ISSM Compilation #52 #---------------------#53 54 #ISSM_COMPILATION can have 2 values:55 # - "yes" compile ISSM56 # - "no" do not compile ISSM57 ISSM_COMPILATION="yes"58 59 #------------------------#60 # 5: Nightly run options #61 #------------------------#62 63 #number of cpus used in ISSM installation and compilation (one is usually64 #safer as some packages are very sensitive to parallel compilation)65 NUMCPUS_INSTALL=866 67 #number of cpus used in the nightly runs.68 NUMCPUS_RUN=169 70 #Nightly run options. The matlab routine runme.m will be called71 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable72 #by Matlab and runme.m73 #ex: "'id',[101 102 103]"74 MATLAB_NROPTIONS="'benchmark','all','id',[2001:2100]"75 PYTHON_NROPTIONS="" -
../trunk-jpl/jenkins/linux64_murdo_iceocean
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/usr/local/matlab80/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR\11 --with-matlab-dir=$MATLAB_PATH \12 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \13 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \14 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich" \15 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \16 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \17 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \18 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \19 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.6/ -lgfortran" \20 --with-numthreads=18 \21 --enable-development \22 --enable-debugging '23 24 #PYTHON and MATLAB testing25 MATLAB_TEST=126 PYTHON_TEST=027 28 #execution path used for parallel runs29 EXECUTION_PATH=$ISSM_DIR/execution30 31 #repo:32 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"33 34 #-----------------------------------#35 # 3: External packages installation #36 #-----------------------------------#37 38 #List of external pakages to be installed and their installation scripts39 EXTERNALPACKAGES="autotools install.sh40 mpich install-3.0-linux64.sh41 cmake install.sh42 petsc install-3.5-linux64.sh43 triangle install-linux64.sh44 shell2junit install.sh"45 46 47 #---------------------#48 # 4: ISSM Compilation #49 #---------------------#50 51 #ISSM_COMPILATION can have 2 values:52 # - "yes" compile ISSM53 # - "no" do not compile ISSM54 ISSM_COMPILATION="yes"55 56 #------------------------#57 # 5: Nightly run options #58 #------------------------#59 60 #number of cpus used in ISSM installation and compilation (one is usually61 #safer as some packages are very sensitive to parallel compilation)62 NUMCPUS_INSTALL=863 64 #number of cpus used in the nightly runs.65 NUMCPUS_RUN=166 67 #Nightly run options. The matlab routine runme.m will be called68 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable69 #by Matlab and runme.m70 #ex: "'id',[101 102 103]"71 MATLAB_NROPTIONS="'benchmark','all','id',4001"72 PYTHON_NROPTIONS="" -
../trunk-jpl/jenkins/imac-012301-gil
1 2 #-------------------------------#3 # 1: ISSM general configuration #4 #-------------------------------#5 6 #MATLAB path7 MATLAB_PATH="/Applications/MATLAB_R2011b.app/"8 9 #ISSM CONFIGURATION10 ISSM_CONFIG='--prefix=$ISSM_DIR \11 --with-matlab-dir=$MATLAB_PATH \12 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \13 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \14 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lpmpich -lmpich -lmpl" \15 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \16 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \17 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \18 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \19 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \20 --with-numthreads=8 \21 --enable-debugging \22 --enable-development'23 24 #PYTHON and MATLAB testing25 MATLAB_TEST=126 PYTHON_TEST=027 28 #-----------------------------------#29 # 3: External packages installation #30 #-----------------------------------#31 32 #List of external pakages to be installed and their installation scripts33 EXTERNALPACKAGES="autotools install.sh34 mpich install-3.0-macosx64.sh35 cmake install.sh36 m1qn3 install.sh37 petsc install-3.5-macosx64.sh38 triangle install-macosx64.sh39 shell2junit install.sh "40 41 #---------------------#42 # 4: ISSM Compilation #43 #---------------------#44 45 #ISSM_COMPILATION can have 2 values:46 # - "yes" compile ISSM47 # - "no" do not compile ISSM48 ISSM_COMPILATION="yes"49 50 #------------------------#51 # 5: Nightly run options #52 #------------------------#53 54 #number of cpus used in ISSM installation and compilation (one is usually55 #safer as some packages are very sensitive to parallel compilation)56 NUMCPUS_INSTALL=857 58 #number of cpus used in the nightly runs.59 NUMCPUS_RUN=160 61 #Nightly run options. The matlab routine runme.m will be called62 #as follows: runme($MATLAB_NROPTIONS). The options must be understandable63 #by Matlab and runme.m64 #ex: "'id',[101 102 103]"65 ## bamg mesh FS66 MATLAB_NROPTIONS="'exclude',[218 234 235 412 413 414 417 418 420 514 701 702 703 422 404 421 503 507 510]"67 PYTHON_NROPTIONS="" -
../trunk-jpl/jenkins/linux64_ross
32 32 MATLAB_TEST=1 33 33 PYTHON_TEST=1 34 34 35 #execution path used for parallel runs36 EXECUTION_PATH=$ISSM_DIR/execution37 38 #repo:39 #We have had issues with upgrading SVN versions. As such, it is nescessary to specify which SVN to use.40 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"41 42 35 #-----------------------------------# 43 36 # 3: External packages installation # 44 37 #-----------------------------------# … … 54 47 m1qn3 install.sh 55 48 shell2junit install.sh" 56 49 50 #-----------------# 51 # 4: test options # 52 #-----------------# 57 53 58 #---------------------#59 # 4: ISSM Compilation #60 #---------------------#61 62 #ISSM_COMPILATION can have 2 values:63 # - "yes" compile ISSM64 # - "no" do not compile ISSM65 ISSM_COMPILATION="yes"66 67 #------------------------#68 # 5: Nightly run options #69 #------------------------#70 71 54 #number of cpus used in ISSM installation and compilation (one is usually 72 55 #safer as some packages are very sensitive to parallel compilation) 73 56 NUMCPUS_INSTALL=10 -
../trunk-jpl/jenkins/linux64_caladan_ad
22 22 MATLAB_TEST=1 23 23 PYTHON_TEST=0 24 24 25 #execution path used for parallel runs26 EXECUTION_PATH=$ISSM_DIR/execution27 28 #repo:29 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"30 31 25 #-----------------------------------# 32 26 # 3: External packages installation # 33 27 #-----------------------------------# … … 42 36 adolc install.sh 43 37 shell2junit install.sh" 44 38 45 #----------------- ----#46 # 4: ISSM Compilation#47 #----------------- ----#39 #-----------------# 40 # 4: test options # 41 #-----------------# 48 42 49 #ISSM_COMPILATION can have 2 values:50 # - "yes" compile ISSM51 # - "no" do not compile ISSM52 ISSM_COMPILATION="yes"53 54 #------------------------#55 # 5: Nightly run options #56 #------------------------#57 58 43 #number of cpus used in ISSM installation and compilation (one is usually 59 44 #safer as some packages are very sensitive to parallel compilation) 60 45 NUMCPUS_INSTALL=2 -
../trunk-jpl/jenkins/linux64_caladan_ampi
31 31 MATLAB_TEST=1 32 32 PYTHON_TEST=0 33 33 34 #execution path used for parallel runs35 EXECUTION_PATH=$ISSM_DIR/execution36 37 #repo:38 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"39 40 34 #-----------------------------------# 41 35 # 3: External packages installation # 42 36 #-----------------------------------# … … 52 46 adolc install-withampi.sh 53 47 shell2junit install.sh" 54 48 55 #----------------- ----#56 # 4: ISSM Compilation#57 #----------------- ----#49 #-----------------# 50 # 4: test options # 51 #-----------------# 58 52 59 #ISSM_COMPILATION can have 2 values:60 # - "yes" compile ISSM61 # - "no" do not compile ISSM62 ISSM_COMPILATION="yes"63 64 #------------------------#65 # 5: Nightly run options #66 #------------------------#67 68 53 #number of cpus used in ISSM installation and compilation (one is usually 69 54 #safer as some packages are very sensitive to parallel compilation) 70 55 NUMCPUS_INSTALL=2 -
../trunk-jpl/jenkins/linux64_ross_ad
24 24 MATLAB_TEST=1 25 25 PYTHON_TEST=1 26 26 27 #execution path used for parallel runs28 EXECUTION_PATH=$ISSM_DIR/execution29 30 #repo:31 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"32 33 27 #-----------------------------------# 34 28 # 3: External packages installation # 35 29 #-----------------------------------# … … 44 38 adolc install.sh 45 39 shell2junit install.sh" 46 40 47 #----------------- ----#48 # 4: ISSM Compilation#49 #----------------- ----#41 #-----------------# 42 # 4: test options # 43 #-----------------# 50 44 51 #ISSM_COMPILATION can have 2 values:52 # - "yes" compile ISSM53 # - "no" do not compile ISSM54 ISSM_COMPILATION="yes"55 56 #------------------------#57 # 5: Nightly run options #58 #------------------------#59 60 45 #number of cpus used in ISSM installation and compilation (one is usually 61 46 #safer as some packages are very sensitive to parallel compilation) 62 47 NUMCPUS_INSTALL=5 -
../trunk-jpl/jenkins/macosx_pine-island_static
29 29 MATLAB_TEST=1 30 30 PYTHON_TEST=0 31 31 32 #execution path used for parallel runs33 EXECUTION_PATH=$ISSM_DIR/execution34 35 #repo:36 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"37 38 32 #-----------------------------------# 39 33 # 3: External packages installation # 40 34 #-----------------------------------# … … 48 42 triangle install-macosx64.sh 49 43 shell2junit install.sh" 50 44 51 #----------------- ----#52 # 4: ISSM Compilation#53 #----------------- ----#45 #-----------------# 46 # 4: test options # 47 #-----------------# 54 48 55 #ISSM_COMPILATION can have 2 values:56 # - "yes" compile ISSM57 # - "no" do not compile ISSM58 ISSM_COMPILATION="yes"59 60 #------------------------#61 # 5: Nightly run options #62 #------------------------#63 64 49 #number of cpus used in ISSM installation and compilation (one is usually 65 50 #safer as some packages are very sensitive to parallel compilation) 66 51 NUMCPUS_INSTALL=4 -
../trunk-jpl/jenkins/linux64_ross_ampi
33 33 MATLAB_TEST=1 34 34 PYTHON_TEST=1 35 35 36 #execution path used for parallel runs37 EXECUTION_PATH=$ISSM_DIR/execution38 39 #repo:40 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"41 42 36 #-----------------------------------# 43 37 # 3: External packages installation # 44 38 #-----------------------------------# … … 54 48 adolc install-withampi.sh 55 49 shell2junit install.sh" 56 50 57 #----------------- ----#58 # 4: ISSM Compilation#59 #----------------- ----#51 #-----------------# 52 # 4: test options # 53 #-----------------# 60 54 61 #ISSM_COMPILATION can have 2 values:62 # - "yes" compile ISSM63 # - "no" do not compile ISSM64 ISSM_COMPILATION="yes"65 66 #------------------------#67 # 5: Nightly run options #68 #------------------------#69 70 55 #number of cpus used in ISSM installation and compilation (one is usually 71 56 #safer as some packages are very sensitive to parallel compilation) 72 57 NUMCPUS_INSTALL=5 -
../trunk-jpl/jenkins/windows_test
9 9 MATLAB_TEST=1 10 10 PYTHON_TEST=0 11 11 12 #execution path used for parallel runs13 EXECUTION_PATH=$ISSM_DIR/execution14 15 16 12 #-----------------------------------# 17 13 # 3: External packages installation # 18 14 #-----------------------------------# 19 15 20 #----------------- ----#21 # 4: ISSM Compilation#22 #----------------- ----#16 #-----------------# 17 # 4: test options # 18 #-----------------# 23 19 24 #ISSM_COMPILATION can have 2 values:25 # - "yes" compile ISSM26 # - "no" do not compile ISSM27 ISSM_COMPILATION="no"28 29 #------------------------#30 # 5: Nightly run options #31 #------------------------#32 33 20 #number of cpus used in ISSM installation and compilation (one is usually 34 21 #safer as some packages are very sensitive to parallel compilation) 35 22 NUMCPUS_INSTALL=4 -
../trunk-jpl/jenkins/windows
31 31 MATLAB_TEST=1 32 32 PYTHON_TEST=0 33 33 34 #execution path used for parallel runs35 EXECUTION_PATH=$ISSM_DIR/execution36 37 #repo:38 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"39 40 34 #-----------------------------------# 41 35 # 3: External packages installation # 42 36 #-----------------------------------# … … 48 42 triangle install-win7.sh 49 43 shell2junit install.sh" 50 44 51 #----------------- ----#52 # 4: ISSM Compilation#53 #----------------- ----#45 #-----------------# 46 # 4: test options # 47 #-----------------# 54 48 55 #ISSM_COMPILATION can have 2 values:56 # - "yes" compile ISSM57 # - "no" do not compile ISSM58 ISSM_COMPILATION="yes"59 60 #------------------------#61 # 5: Nightly run options #62 #------------------------#63 64 49 #number of cpus used in ISSM installation and compilation (one is usually 65 50 #safer as some packages are very sensitive to parallel compilation) 66 51 NUMCPUS_INSTALL=5 -
../trunk-jpl/jenkins/linux64_ross_gia
28 28 MATLAB_TEST=1 29 29 PYTHON_TEST=0 30 30 31 #execution path used for parallel runs32 EXECUTION_PATH=$ISSM_DIR/execution33 34 #repo:35 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"36 SVN='/usr/bin/svn'37 SVNVERSION='/usr/bin/svnversion'38 39 31 #-----------------------------------# 40 32 # 3: External packages installation # 41 33 #-----------------------------------# … … 49 41 gmsh install.sh 50 42 shell2junit install.sh" 51 43 44 #-----------------# 45 # 4: test options # 46 #-----------------# 52 47 53 #---------------------#54 # 4: ISSM Compilation #55 #---------------------#56 57 #ISSM_COMPILATION can have 2 values:58 # - "yes" compile ISSM59 # - "no" do not compile ISSM60 ISSM_COMPILATION="yes"61 62 #------------------------#63 # 5: Nightly run options #64 #------------------------#65 66 48 #number of cpus used in ISSM installation and compilation (one is usually 67 49 #safer as some packages are very sensitive to parallel compilation) 68 50 NUMCPUS_INSTALL=8 -
../trunk-jpl/jenkins/macosx_pine-island_dakota
28 28 MATLAB_TEST=1 29 29 PYTHON_TEST=0 30 30 31 #execution path used for parallel runs32 EXECUTION_PATH=$ISSM_DIR/execution33 34 #repo:35 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"36 37 31 #-----------------------------------# 38 32 # 3: External packages installation # 39 33 #-----------------------------------# … … 50 44 dakota install-6.2-macosx64.sh 51 45 shell2junit install.sh" 52 46 53 #----------------- ----#54 # 4: ISSM Compilation#55 #----------------- ----#47 #-----------------# 48 # 4: test options # 49 #-----------------# 56 50 57 #ISSM_COMPILATION can have 2 values:58 # - "yes" compile ISSM59 # - "no" do not compile ISSM60 ISSM_COMPILATION="yes"61 62 #------------------------#63 # 5: Nightly run options #64 #------------------------#65 66 51 #number of cpus used in ISSM installation and compilation (one is usually 67 52 #safer as some packages are very sensitive to parallel compilation) 68 53 NUMCPUS_INSTALL=4 -
../trunk-jpl/jenkins/linux64_ross_iceocean
26 26 MATLAB_TEST=1 27 27 PYTHON_TEST=0 28 28 29 #execution path used for parallel runs30 EXECUTION_PATH=$ISSM_DIR/execution31 32 #repo:33 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"34 35 29 #-----------------------------------# 36 30 # 3: External packages installation # 37 31 #-----------------------------------# … … 44 38 triangle install-linux64.sh 45 39 shell2junit install.sh" 46 40 41 #-----------------# 42 # 4: test options # 43 #-----------------# 47 44 48 #---------------------#49 # 4: ISSM Compilation #50 #---------------------#51 52 #ISSM_COMPILATION can have 2 values:53 # - "yes" compile ISSM54 # - "no" do not compile ISSM55 ISSM_COMPILATION="yes"56 57 #------------------------#58 # 5: Nightly run options #59 #------------------------#60 61 45 #number of cpus used in ISSM installation and compilation (one is usually 62 46 #safer as some packages are very sensitive to parallel compilation) 63 47 NUMCPUS_INSTALL=8 -
../trunk-jpl/jenkins/linux64_ross_se
27 27 MATLAB_TEST=1 28 28 PYTHON_TEST=1 29 29 30 #execution path used for parallel runs31 EXECUTION_PATH=$ISSM_DIR/execution32 33 #repo:34 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"35 36 30 #-----------------------------------# 37 31 # 3: External packages installation # 38 32 #-----------------------------------# … … 49 43 gmsh install.sh 50 44 shell2junit install.sh" 51 45 52 #----------------- ----#53 # 4: ISSM Compilation#54 #----------------- ----#46 #-----------------# 47 # 4: test options # 48 #-----------------# 55 49 56 #ISSM_COMPILATION can have 2 values:57 # - "yes" compile ISSM58 # - "no" do not compile ISSM59 ISSM_COMPILATION="yes"60 61 #------------------------#62 # 5: Nightly run options #63 #------------------------#64 65 50 #number of cpus used in ISSM installation and compilation (one is usually 66 51 #safer as some packages are very sensitive to parallel compilation) 67 52 NUMCPUS_INSTALL=5 -
../trunk-jpl/jenkins/windows-par
29 29 MATLAB_TEST=1 30 30 PYTHON_TEST=0 31 31 32 #execution path used for parallel runs33 EXECUTION_PATH=$ISSM_DIR/execution34 35 #repo:36 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"37 38 32 #-----------------------------------# 39 33 # 3: External packages installation # 40 34 #-----------------------------------# … … 46 40 triangle install-win7.sh 47 41 shell2junit install.sh" 48 42 49 #----------------- ----#50 # 4: ISSM Compilation#51 #----------------- ----#43 #-----------------# 44 # 4: test options # 45 #-----------------# 52 46 53 #ISSM_COMPILATION can have 2 values:54 # - "yes" compile ISSM55 # - "no" do not compile ISSM56 ISSM_COMPILATION="yes"57 58 #------------------------#59 # 5: Nightly run options #60 #------------------------#61 62 47 #number of cpus used in ISSM installation and compilation (one is usually 63 48 #safer as some packages are very sensitive to parallel compilation) 64 49 NUMCPUS_INSTALL=8 -
../trunk-jpl/jenkins/linux64_caladan
32 32 MATLAB_TEST=1 33 33 PYTHON_TEST=1 34 34 35 #execution path used for parallel runs36 EXECUTION_PATH=$ISSM_DIR/execution37 38 #repo:39 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"40 41 35 #-----------------------------------# 42 36 # 3: External packages installation # 43 37 #-----------------------------------# … … 53 47 m1qn3 install.sh 54 48 shell2junit install.sh" 55 49 56 #----------------- ----#57 # 4: ISSM Compilation#58 #----------------- ----#50 #-----------------# 51 # 4: Test options # 52 #-----------------# 59 53 60 #ISSM_COMPILATION can have 2 values:61 # - "yes" compile ISSM62 # - "no" do not compile ISSM63 ISSM_COMPILATION="yes"64 65 #------------------------#66 # 5: Nightly run options #67 #------------------------#68 69 54 #number of cpus used in ISSM installation and compilation (one is usually 70 55 #safer as some packages are very sensitive to parallel compilation) 71 56 NUMCPUS_INSTALL=4 -
../trunk-jpl/jenkins/macosx_pine-island
38 38 triangle install-macosx64.sh 39 39 shell2junit install.sh" 40 40 41 #----------------- ----#42 # 4: ISSM Compilation#43 #----------------- ----#41 #-----------------# 42 # 4: test options # 43 #-----------------# 44 44 45 #ISSM_COMPILATION can have 2 values:46 # - "yes" compile ISSM47 # - "no" do not compile ISSM48 ISSM_COMPILATION="yes"49 50 #------------------------#51 # 5: Nightly run options #52 #------------------------#53 54 45 #number of cpus used in ISSM installation and compilation (one is usually 55 46 #safer as some packages are very sensitive to parallel compilation) 56 47 NUMCPUS_INSTALL=4 -
../trunk-jpl/jenkins/linux64_ross_test
32 32 #MATLAB_TEST=1 33 33 #PYTHON_TEST=1 34 34 35 #execution path used for parallel runs36 EXECUTION_PATH=$ISSM_DIR/execution37 38 #repo:39 REPOSITORY="https://issm.ess.uci.edu/svn/issm/issm/trunk-jpl"40 41 35 #-----------------------------------# 42 36 # 3: External packages installation # 43 37 #-----------------------------------# … … 53 47 m1qn3 install.sh 54 48 shell2junit install.sh" 55 49 50 #-----------------# 51 # 4: test options # 52 #-----------------# 56 53 57 #---------------------#58 # 4: ISSM Compilation #59 #---------------------#60 61 #ISSM_COMPILATION can have 2 values:62 # - "yes" compile ISSM63 # - "no" do not compile ISSM64 #ISSM_COMPILATION="yes"65 66 #------------------------#67 # 5: Nightly run options #68 #------------------------#69 70 54 #number of cpus used in ISSM installation and compilation (one is usually 71 55 #safer as some packages are very sensitive to parallel compilation) 72 56 NUMCPUS_INSTALL=6
Note:
See TracBrowser
for help on using the repository browser.