From 8f93a4e3f8ded82d2292480723ed02b6a16b19db Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Mon, 9 Aug 2021 13:15:10 +0100 Subject: [PATCH 1/2] added depth of 1 to git clones --- scripts/unix_share_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/unix_share_build.sh b/scripts/unix_share_build.sh index 173b4e4d6..7970850b8 100644 --- a/scripts/unix_share_build.sh +++ b/scripts/unix_share_build.sh @@ -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 @@ -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 Version5.1.0 + git clone https://bitbucket.org/fathomteam/moab -b Version5.1.0 --depth 1 cd moab # patching MOAB CMakeLists.txt to use default find(HDF5) $SED -i "s/HDF5_MOAB/HDF5/" CMakeLists.txt @@ -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 \ From b03addae29a4649a243f46cf34d5e0b4503cdb6e Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Mon, 9 Aug 2021 13:51:13 +0100 Subject: [PATCH 2/2] updated moab version --- scripts/unix_share_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unix_share_build.sh b/scripts/unix_share_build.sh index 7970850b8..5a31bb888 100644 --- a/scripts/unix_share_build.sh +++ b/scripts/unix_share_build.sh @@ -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 Version5.1.0 --depth 1 + 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