aboutsummaryrefslogtreecommitdiff
path: root/.ci/before_cache.sh
blob: b5678bc20ca4a38cdb5d167f48f2f0a9b504d9f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash

set -e
set -o pipefail

if [[ "${TRAVIS_OS_NAME}" != linux ]]; then
  # Caches are only enabled for Travis's Linux container infrastructure,
  # but this script is still executed on OS X.
  exit
fi

# Don't cache pip's log and selfcheck.
rm -rf "${HOME}/.cache/pip/log"
rm -f "${HOME}/.cache/pip/selfcheck.json"

# Update the third-party dependency cache only if the build was successful.
if [[ -f "${SUCCESS_MARKER}" ]]; then
  rm -rf "${HOME}/.cache/nvim-deps"
  mv -T "${DEPS_BUILD_DIR}" "${HOME}/.cache/nvim-deps"
  touch "${CACHE_MARKER}"
  echo "Updated third-party dependencies (timestamp: $(stat -c '%y' "${CACHE_MARKER}"))."
fi