2015-07-05 00:52:36 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-04-04 10:15:30 -07:00
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${CI_DIR}/common/suite.sh"
|
|
|
|
|
2015-07-05 00:52:36 -07:00
|
|
|
# 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.
|
2017-04-04 10:15:30 -07:00
|
|
|
if ended_successfully; then
|
2015-09-08 03:48:04 -07:00
|
|
|
rm -rf "${HOME}/.cache/nvim-deps"
|
2016-07-04 17:51:34 -07:00
|
|
|
mv "${DEPS_BUILD_DIR}" "${HOME}/.cache/nvim-deps"
|
2015-09-08 03:48:04 -07:00
|
|
|
touch "${CACHE_MARKER}"
|
|
|
|
echo "Updated third-party dependencies (timestamp: $(stat -c '%y' "${CACHE_MARKER}"))."
|
2015-07-05 00:52:36 -07:00
|
|
|
fi
|