From b4a2fdc9bdc87fc8bd62e8bf7890482c590e558c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?SZEDER=20G=C3=A1bor?= Date: Sun, 31 Dec 2017 11:12:04 +0100 Subject: travis-ci: create the cache directory early in the build process MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems that Travis CI creates the cache directory for us anyway, even when a previous cache doesn't exist for the current build job. Alas, this behavior is not explicitly documented, therefore we don't rely on it and create the cache directory ourselves in those build jobs that read/write cached data (currently only the prove state). In the following commit we'll start to cache additional data in every build job, and will access the cache much earlier in the build process. Therefore move creating the cache directory to 'ci/lib-travisci.sh' to make sure that it exists at the very beginning of every build job. Signed-off-by: SZEDER Gábor Reviewed-by: Lars Schneider Signed-off-by: Junio C Hamano --- ci/lib-travisci.sh | 2 ++ ci/run-tests.sh | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh index 9d379db8a..197aa14c1 100755 --- a/ci/lib-travisci.sh +++ b/ci/lib-travisci.sh @@ -27,6 +27,8 @@ skip_branch_tip_with_tag () { # and installing dependencies. set -ex +mkdir -p "$HOME/travis-cache" + skip_branch_tip_with_tag if test -z "$jobname" diff --git a/ci/run-tests.sh b/ci/run-tests.sh index f0c743de9..ccdfc2b9d 100755 --- a/ci/run-tests.sh +++ b/ci/run-tests.sh @@ -5,6 +5,5 @@ . ${0%/*}/lib-travisci.sh -mkdir -p $HOME/travis-cache ln -s $HOME/travis-cache/.prove t/.prove make --quiet test -- cgit v1.2.1