aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-09 21:13:03 +0100
committerGitHub <noreply@github.com>2023-02-09 21:13:03 +0100
commitec932961cc5596009f3179edd620bc778a1503d7 (patch)
treef28e5f55434e4c75dcc96c11ca26684cca4f1c00
parent05d3bef8364c93b205fd47398420dcd705df2714 (diff)
downloadrneovim-ec932961cc5596009f3179edd620bc778a1503d7.tar.gz
rneovim-ec932961cc5596009f3179edd620bc778a1503d7.tar.bz2
rneovim-ec932961cc5596009f3179edd620bc778a1503d7.zip
ci: inline internal caching script to Github actions (#22192)
I don't think it's possible to meaningfully abstract away caching on multiple providers, as each provider has different mechanisms on how they work.
-rw-r--r--.github/workflows/ci.yml9
-rwxr-xr-x.github/workflows/env.sh2
-rwxr-xr-xci/before_cache.sh17
-rwxr-xr-xci/before_script.sh9
4 files changed, 1 insertions, 36 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d1a6b5dcaa..f80c34fe96 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -110,9 +110,6 @@ jobs:
run: |
git diff --color --exit-code
- - name: Cache dependencies
- run: ./ci/before_cache.sh
-
lintc:
# This job tests two things: it lints the code but also builds neovim using
# system dependencies instead of bundled dependencies. This is to make sure
@@ -173,9 +170,6 @@ jobs:
- if: success() || failure() && steps.abort_job.outputs.status == 'success'
run: cmake --build build --target clang-tidy
- - name: Cache dependencies
- run: ./ci/before_cache.sh
-
posix:
name: ${{ matrix.runner }} ${{ matrix.flavor }} (cc=${{ matrix.cc }})
strategy:
@@ -282,9 +276,6 @@ jobs:
name: Install nvim
run: ./ci/run_tests.sh install_nvim
- - name: Cache dependencies
- run: ./ci/before_cache.sh
-
windows:
runs-on: windows-2019
timeout-minutes: 45
diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh
index 24d85fc23c..08e5ad97ab 100755
--- a/.github/workflows/env.sh
+++ b/.github/workflows/env.sh
@@ -11,7 +11,7 @@ LOG_DIR=$BUILD_DIR/log
NVIM_LOG_FILE=$BUILD_DIR/.nvimlog
VALGRIND_LOG=$LOG_DIR/valgrind-%p.log
CACHE_DIR=$HOME/.cache
-CACHE_NVIM_DEPS_DIR=$CACHE_DIR/nvim-deps
+CACHE_NVIM_DEPS_DIR=$DEPS_BUILD_DIR
CACHE_MARKER=$CACHE_NVIM_DEPS_DIR/.ci_cache_marker
CACHE_UNCRUSTIFY=$CACHE_DIR/uncrustify
DEPS_CMAKE_FLAGS=
diff --git a/ci/before_cache.sh b/ci/before_cache.sh
deleted file mode 100755
index 94c18bd2cf..0000000000
--- a/ci/before_cache.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-set -o pipefail
-
-mkdir -p "$CACHE_DIR"
-
-# Update the third-party dependency cache only if the build was successful.
-if [ -d "${DEPS_BUILD_DIR}" ]; then
- # Do not cache downloads. They should not be needed with up-to-date deps.
- rm -rf "${DEPS_BUILD_DIR}/build/downloads"
- rm -rf "${CACHE_NVIM_DEPS_DIR}"
- mv "${DEPS_BUILD_DIR}" "${CACHE_NVIM_DEPS_DIR}"
-
- touch "${CACHE_MARKER}"
- echo "Updated third-party dependencies."
-fi
diff --git a/ci/before_script.sh b/ci/before_script.sh
index 3e8adcfb15..9797d3ae30 100755
--- a/ci/before_script.sh
+++ b/ci/before_script.sh
@@ -14,15 +14,6 @@ if test "${FUNCTIONALTEST}" = "functionaltest-lua" ; then
fi
mkdir -p "${DEPS_BUILD_DIR}"
-
-# Use cached dependencies if $CACHE_MARKER exists.
-if test -f "${CACHE_MARKER}"; then
- echo "Using third-party dependencies from cache."
- cp -a "${CACHE_NVIM_DEPS_DIR}"/. "${DEPS_BUILD_DIR}"
-fi
-
-# Even if we're using cached dependencies, run CMake and make to
-# update CMake configuration and update to newer deps versions.
cd "${DEPS_BUILD_DIR}"
echo "Configuring with '${DEPS_CMAKE_FLAGS}'."
# shellcheck disable=SC2086