diff options
author | dundargoc <gocdundar@gmail.com> | 2023-03-02 23:15:26 +0100 |
---|---|---|
committer | dundargoc <gocdundar@gmail.com> | 2023-03-05 14:52:05 +0100 |
commit | 98876db1559c99109dc37812adb5ebccb25d9499 (patch) | |
tree | a68d152fdaf4573c949b7b25bc69dc8c1cbc8ab5 | |
parent | ba38f35d3e2f37c2289543e6e0c4451c679c5834 (diff) | |
download | rneovim-98876db1559c99109dc37812adb5ebccb25d9499.tar.gz rneovim-98876db1559c99109dc37812adb5ebccb25d9499.tar.bz2 rneovim-98876db1559c99109dc37812adb5ebccb25d9499.zip |
ci: use the same deps directory location for all jobs
Having separate directory location causes failures to be inconsistent
and ultimately confusing. A common problem is a file with a particular
name is searched for the entire repository, which gives different
results if the dependency directory is inside the neovim directory or
outside of it.
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a702bce71f..8503eb6620 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -189,8 +189,6 @@ jobs: perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' fi - - run: echo "DEPS_BUILD_DIR=$HOME/nvim-deps" >> $GITHUB_ENV - - uses: ./.github/actions/cache - name: Build third-party deps |