Skip to content

Commit

Permalink
#908 build - pull up revisions in build_cpp.sh
Browse files Browse the repository at this point in the history
- Makes it easier to identify/change.
  • Loading branch information
pnstickne committed Jul 28, 2020
1 parent aee21f3 commit c8544a6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ set -ex
source_dir=${1}
build_dir=${2}

# Dependency versions, when fetched via git.
detector_rev=master
checkpoint_rev=develop

if test "${VT_DOXYGEN_ENABLED:-0}" -eq 1
then
token=${3}
Expand Down Expand Up @@ -32,7 +36,7 @@ if test -d "${source_dir}/lib/detector"
then
echo "Detector already in lib... not downloading, building, and installing"
else
git clone -b master --depth 1 https://github.com/DARMA-tasking/detector.git
git clone -b "${detector_rev}" --depth 1 https://github.com/DARMA-tasking/detector.git
export DETECTOR=$PWD/detector
export DETECTOR_BUILD=${build_dir}/detector
mkdir -p "$DETECTOR_BUILD"
Expand All @@ -49,7 +53,7 @@ if test -d "${source_dir}/lib/checkpoint"
then
echo "Checkpoint already in lib... not downloading, building, and installing"
else
git clone -b develop --depth 1 https://github.com/DARMA-tasking/checkpoint.git
git clone -b "${checkpoint_rev}" --depth 1 https://github.com/DARMA-tasking/checkpoint.git
export CHECKPOINT=$PWD/checkpoint
export CHECKPOINT_BUILD=${build_dir}/checkpoint
mkdir -p "$CHECKPOINT_BUILD"
Expand Down

0 comments on commit c8544a6

Please sign in to comment.