ci: remove environment variable DEPS_BUILD_DIR from CI

If one uses .deps when DEPS_BUILD_DIR is defined in another location it
leads to very surprising behaviors, as it looks for libraries in other
places other than .deps.
This commit is contained in:
dundargoc
2023-03-09 12:27:20 +01:00
parent 236c20795e
commit 6cd7b5eeef
2 changed files with 9 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ runs:
# files to search through.
- uses: actions/cache@v3
with:
path: ${{ env.DEPS_BUILD_DIR }}
path: .deps
key: ${{ env.CACHE_KEY }}-${{ hashFiles('cmake**', 'ci/**',
'.github/workflows/test.yml', 'CMakeLists.txt',
'runtime/CMakeLists.txt', 'src/nvim/**/CMakeLists.txt') }}