mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
10cdf8c286
Instead of just caching the third-party build output, cache the full build directory. Always run make to ensure that updated dependencies are downloaded.
23 lines
658 B
Bash
Executable File
23 lines
658 B
Bash
Executable File
#!/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
|