diff options
| author | Stephan Seitz <sseitz@nvidia.com> | 2021-10-10 11:35:35 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-10-21 19:50:23 +0200 |
| commit | 24edc5d93f5d055b6e7226b38265cfe7037c7c8b (patch) | |
| tree | 96c29bce347e2eb79067d3f435fa6c55b4626bcd /.github | |
| parent | fix(d): don't use string_literals (diff) | |
| download | nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar.gz nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar.bz2 nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar.lz nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar.xz nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.tar.zst nvim-treesitter-24edc5d93f5d055b6e7226b38265cfe7037c7c8b.zip | |
ci: upload artifacts before check
This could provide better possibilities to investigate a failed CI.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/check-query-files-and-compilation.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index 68a5670ff..c982e21b8 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -54,14 +54,14 @@ jobs: run: cp -r ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/* parser shell: bash + - uses: actions/upload-artifact@v2 + with: + name: parsers-${{ matrix.os }}-${{ matrix.cc }}-x86_64 + path: parser/* + - name: Check query files (Windows) if: matrix.os == 'windows-latest' env: ALLOWED_INSTALLATION_FAILURES: haskell run: C:\\tools\\neovim\\Neovim\\bin\\nvim.exe --headless -c "luafile ./scripts/check-queries.lua" -c "q" - - uses: actions/upload-artifact@v2 - with: - name: parsers-${{ matrix.os }}-${{ matrix.cc }}-x86_64 - path: parser/* - |
