diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2022-06-28 13:35:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-28 13:35:56 +0200 |
| commit | e0f605bfd8b40b45a7efc88ffa0ee6b4a8a3307a (patch) | |
| tree | 7714844409ed8d84f5f408590b1d7cb82bfd5f0b /.github | |
| parent | 9e1474409934cda19e17d41a876415fc25022dce (diff) | |
| parent | 4c0c6f8428681c7ceef1148abe40b7d06079449c (diff) | |
| download | rneovim-e0f605bfd8b40b45a7efc88ffa0ee6b4a8a3307a.tar.gz rneovim-e0f605bfd8b40b45a7efc88ffa0ee6b4a8a3307a.tar.bz2 rneovim-e0f605bfd8b40b45a7efc88ffa0ee6b4a8a3307a.zip | |
Merge #19120 build: rename build-related dirs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/labeler.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml index fb06b0b379..04e7b281d1 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -18,7 +18,7 @@ - runtime/lua/vim/diagnostic.lua "dependencies": - - third-party/**/* + - cmake.deps/**/* "spell": - src/nvim/spell* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef70fdfc3c..bdc487894e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,9 +98,9 @@ jobs: path: | ${{ env.CACHE_NVIM_DEPS_DIR }} ~/.ccache - key: lint-${{ hashFiles('cmake/*', '**/CMakeLists.txt', '!third-party/**CMakeLists.txt') }}-${{ github.base_ref }} + key: lint-${{ hashFiles('cmake/*', '**/CMakeLists.txt', '!cmake.deps/**CMakeLists.txt') }}-${{ github.base_ref }} - - name: Build third-party + - name: Build third-party deps run: ./ci/before_script.sh - name: Build nvim @@ -236,9 +236,9 @@ jobs: path: | ${{ env.CACHE_NVIM_DEPS_DIR }} ~/.ccache - key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} + key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'cmake.deps/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} - - name: Build third-party + - name: Build third-party deps run: ./ci/before_script.sh - name: Build @@ -276,7 +276,7 @@ jobs: - uses: actions/cache@v3 with: path: ${{ env.DEPS_BUILD_DIR }} - key: ${{ hashFiles('third-party\**') }} + key: ${{ hashFiles('cmake.deps\**') }} - name: Run CI run: powershell ci\build.ps1 |