Skip to content

Commit

Permalink
CircleCI: Run git log with --no-pager option
Browse files Browse the repository at this point in the history
Otherwise, if commit message is long and `--More--` displayed,
then the build will hang and eventually terminate with:

    Too long with no output (exceeded 10m0s): context deadline exceeded
  • Loading branch information
mloskot committed Jan 10, 2020
1 parent a1182da commit 870ff8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/get-boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ git submodule --quiet update --init $GIT_SUBMODULE_OPTS \

if [ -d ./.git ]; then
echo "get-boost: git log --stat -1"
git log -1
git --no-pager log --stat -1
fi

echo "get-boost: Deleting $PWD/libs/gil cloned with Boost superproject"
Expand All @@ -100,7 +100,7 @@ if [ -d libs/gil/.git ]; then
current_pwd=`pwd`
cd libs/gil
echo "get-boost: git log --stat -1"
git log -1
git --no-pager log --stat -1
cd $current_pwd
fi

Expand Down

0 comments on commit 870ff8c

Please sign in to comment.