aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-10-10 19:03:51 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-10-24 18:37:38 -0400
commitfafa064d2a8dbe24303545ab582ec84cde52ab5b (patch)
tree74585fa1f005faac823025deecb23655d0b53a4c
parentdeb2327b435925c6a39ca654a79283b8eb6aeb86 (diff)
downloadbitcoin-fafa064d2a8dbe24303545ab582ec84cde52ab5b.tar.xz
ci: Remove ccache requirement on the host
ccache is only needed to create the cache dir on the host, if it didn't already exist. The same can be achieved with mkdir, so just use that instead.
-rw-r--r--.cirrus.yml2
-rw-r--r--ci/README.md2
-rwxr-xr-xci/test/04_install.sh2
3 files changed, 2 insertions, 4 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 9464ec1685..517cd93585 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -45,8 +45,6 @@ task:
folder: "/tmp/ccache_dir"
depends_built_cache:
folder: "/tmp/cirrus-ci-build/depends/built"
- depends_sdk_cache:
- folder: "/tmp/cirrus-ci-build/depends/sdk-sources"
install_script:
- apt-get update
- apt-get -y install git bash ccache
diff --git a/ci/README.md b/ci/README.md
index 16c481158f..fb1cd7460b 100644
--- a/ci/README.md
+++ b/ci/README.md
@@ -12,7 +12,7 @@ To allow for a wide range of tested environments, but also ensure reproducibilit
requires `docker` to be installed. To install all requirements on Ubuntu, run
```
-sudo apt install docker.io ccache bash git
+sudo apt install docker.io bash git
```
To run the default test stage,
diff --git a/ci/test/04_install.sh b/ci/test/04_install.sh
index d0831a4c13..df07b8fe5c 100755
--- a/ci/test/04_install.sh
+++ b/ci/test/04_install.sh
@@ -33,7 +33,7 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
fi
mkdir -p "${BASE_SCRATCH_DIR}"
-ccache echo "Creating ccache dir if it didn't already exist"
+mkdir -p "${CCACHE_DIR}"
if [ ! -d ${DIR_QA_ASSETS} ]; then
git clone https://github.com/bitcoin-core/qa-assets ${DIR_QA_ASSETS}