Skip to content

Commit

Permalink
Merge pull request #114 from svalinn/quicker_git_clones
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke authored Aug 9, 2021
2 parents 01a1751 + be75d8c commit 8e41f01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/unix_share_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function linux_build_hdf5() {
cd ${PLUGIN_ABS_PATH}
mkdir -p hdf5/bld
cd hdf5
git clone https://github.com/HDFGroup/hdf5.git -b hdf5-1_12_0
git clone https://github.com/HDFGroup/hdf5.git -b hdf5-1_12_0 --depth 1
cd bld
cmake ../hdf5 -DBUILD_SHARED_LIBS:BOOL=ON
make
Expand All @@ -110,7 +110,7 @@ function build_moab() {
cd ${PLUGIN_ABS_PATH}
mkdir -pv moab/bld
cd moab
git clone https://bitbucket.org/fathomteam/moab -b 5.3.0
git clone https://bitbucket.org/fathomteam/moab -b 5.3.0 --depth 1
cd moab
# patching MOAB CMakeLists.txt to use default find(HDF5)
$SED -i "s/HDF5_MOAB/HDF5/" CMakeLists.txt
Expand All @@ -134,7 +134,7 @@ function build_dagmc(){
cd ${PLUGIN_ABS_PATH}
mkdir -pv DAGMC/bld
cd DAGMC
git clone https://github.com/svalinn/DAGMC -b develop
git clone https://github.com/svalinn/DAGMC -b develop --depth 1
cd bld
cmake ../DAGMC -DMOAB_DIR=${PLUGIN_ABS_PATH}/moab \
-DBUILD_UWUW=ON \
Expand Down

0 comments on commit 8e41f01

Please sign in to comment.