ci: remove unnecessary variables and functions (#22150)

This commit is contained in:
dundargoc
2023-02-07 09:27:51 +01:00
committed by GitHub
parent 1391385ba9
commit adae075fcf
6 changed files with 51 additions and 80 deletions

View File

@@ -5,8 +5,6 @@ set -o pipefail
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source-path=SCRIPTDIR
source "${CI_DIR}/common/build.sh"
# shellcheck source-path=SCRIPTDIR
source "${CI_DIR}/common/suite.sh"
mkdir -p "${HOME}/.cache"
@@ -22,5 +20,5 @@ if ended_successfully && [ -d "${DEPS_BUILD_DIR}" ]; then
mv "${DEPS_BUILD_DIR}" "${CACHE_NVIM_DEPS_DIR}"
touch "${CACHE_MARKER}"
echo "Updated third-party dependencies (timestamp: $(_stat "${CACHE_MARKER}"))."
echo "Updated third-party dependencies."
fi