Changeset 25706


Ignore:
Timestamp:
10/21/20 18:43:18 (4 years ago)
Author:
jdquinn
Message:

CHG: Configuration for running Valgrind on builds with Boost

Location:
issm/trunk-jpl
Files:
9 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/autotools/install-debian-linux.sh

    r24649 r25706  
    3333
    3434./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install"
    35 make
    36 make install
     35if [ $# -eq 0 ]; then
     36        make
     37        make install
     38else
     39        make -j $1
     40        make -j $1 install
     41fi
    3742cd ..
    3843
     
    4550cd src
    4651./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install"
    47 make
    48 make install
     52if [ $# -eq 0 ]; then
     53        make
     54        make install
     55else
     56        make -j $1
     57        make -j $1 install
     58fi
    4959cd ..
    5060
     
    5767cd src
    5868./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install"
    59 make
    60 make install
     69if [ $# -eq 0 ]; then
     70        make
     71        make install
     72else
     73        make -j $1
     74        make -j $1 install
     75fi
    6176cd ..
    6277
     
    7085cd src
    7186./configure --prefix="${ISSM_DIR}/externalpackages/autotools/install"
    72 make
    73 make install
     87if [ $# -eq 0 ]; then
     88        make
     89        make install
     90else
     91        make -j $1
     92        make -j $1 install
     93fi
    7494cd ..
  • issm/trunk-jpl/jenkins/ross-debian_linux-solid_earth

    r25704 r25706  
    8686#
    8787# NOTE:
    88 # - Tests 2002, 2003, 2005, 2010, 2101, and 2021 are excluded as Gmsh produces different-sized meshes on macOS and Linux for 3d objects (archives are generated on macOS).
     88# - Tests 2002, 2003, 2005, 2010, 2101, and 2021 are excluded as Gmsh produces
     89# different-sized meshes on macOS and Linux for 3d objects (archives are
     90# generated on macOS).
    8991# - Excluding 2006 until it can be debugged (PETSc crash)
    9092#
Note: See TracChangeset for help on using the changeset viewer.