diff options
| author | Dundar Göc <gocdundar@gmail.com> | 2022-02-05 17:11:28 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-02-05 18:26:06 +0100 |
| commit | cf8ca7ee4ed4d1fdde921a83644baadf6de8a849 (patch) | |
| tree | a3de40dfdcbdba328a2f95269cc378e0ab70e8a9 | |
| parent | ci: combine "Check query files" steps into a single step (diff) | |
| download | nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar.gz nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar.bz2 nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar.lz nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar.xz nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.tar.zst nvim-treesitter-cf8ca7ee4ed4d1fdde921a83644baadf6de8a849.zip | |
ci: combine "Compile parsers" steps into a single step
| -rw-r--r-- | .github/workflows/check-query-files-and-compilation.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index 94b36e3ee..d26729721 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -74,15 +74,8 @@ jobs: ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/ key: ${{ matrix.os }}-${{ matrix.cc }}-${{ matrix.nvim_tag }}-parsers-v1-${{ hashFiles('./lockfile.json', './lua/nvim-treesitter/parsers.lua', './lua/nvim-treesitter/install.lua', './lua/nvim-treesitter/shell_selectors.lua') }} - - name: Compile parsers Unix like - if: matrix.os != 'windows-2022' - run: | - $NVIM --headless -c "TSInstallSync all" -c "q" - - - name: Compile parsers Windows - if: matrix.os == 'windows-2022' - run: | - $NVIM --headless -c "lua require'nvim-treesitter.install'.prefer_git=false" -c "TSInstallSync all" -c "q" + - name: Compile parsers + run: $NVIM --headless -c "lua require'nvim-treesitter.install'.prefer_git=false" -c "TSInstallSync all" -c "q" - name: Post compile Windows if: matrix.os == 'windows-2022' |
