aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2021-11-20 18:05:46 +0100
committerStephan Seitz <stephan.seitz@fau.de>2021-11-24 14:47:07 +0100
commit8016b74cea415596be405b14067d2938914b2e18 (patch)
tree117ceb4fdf6a2582acfbdcb86d4218d0b59cdd4e /.github
parentAdd glsl ftdetect (diff)
downloadnvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar.gz
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar.bz2
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar.lz
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar.xz
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.tar.zst
nvim-treesitter-8016b74cea415596be405b14067d2938914b2e18.zip
ci: Try out windows-2022
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check-query-files-and-compilation.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml
index d89b09fa5..df7e54477 100644
--- a/.github/workflows/check-query-files-and-compilation.yml
+++ b/.github/workflows/check-query-files-and-compilation.yml
@@ -7,14 +7,14 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest, windows-latest, macos-latest]
+ os: [ubuntu-latest, windows-2022, macos-latest]
cc: [ gcc, clang ]
exclude:
- os: macos-latest
cc: gcc
include:
- - os: windows-latest
+ - os: windows-2022
cc: cl
- os: macos-latest
@@ -37,17 +37,17 @@ jobs:
bash ./scripts/ci-install-${{ matrix.os }}.sh
- name: Compile parsers Unix like
- if: matrix.os != 'windows-latest'
+ if: matrix.os != 'windows-2022'
run: |
nvim --headless -c "TSInstallSync all" -c "q"
- name: Compile parsers Windows
- if: matrix.os == 'windows-latest'
+ if: matrix.os == 'windows-2022'
run: |
Neovim\\bin\\nvim.exe --headless -c "TSInstallSync all" -c "q"
- name: Post compile Windows
- if: matrix.os == 'windows-latest'
+ if: matrix.os == 'windows-2022'
run: cp -r ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/* parser
shell: bash
@@ -57,13 +57,13 @@ jobs:
path: parser/*
- name: Check query files (Unix)
- if: matrix.os != 'windows-latest'
+ if: matrix.os != 'windows-2022'
env:
ALLOWED_INSTALLATION_FAILURES: haskell
run: nvim --headless -c "luafile ./scripts/check-queries.lua" -c "q"
- name: Check query files (Windows)
- if: matrix.os == 'windows-latest'
+ if: matrix.os == 'windows-2022'
env:
ALLOWED_INSTALLATION_FAILURES: haskell
run: Neovim\\bin\\nvim.exe --headless -c "luafile ./scripts/check-queries.lua" -c "q"