Skip to content

Commit

Permalink
fixup! ci: add win32 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoulter committed May 18, 2024
1 parent a33afe1 commit 8465fab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/vader-vim-win32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# Uploaded release compiled with recent Java.
$env:JAVA_HOME = $env:JAVA_HOME_21_X64
$env:PATH = "c-worksheet-instrumentor-0.2.6\bin;$env:PATH"
vim -Es -Nu init.vim -c 'silent Vader! test\*.vader'
vim -Es -Nu init.vim -c 'Vader! test\*.vader'
timeout-minutes: 2

- name: Kill Server
Expand All @@ -67,20 +67,20 @@ jobs:
- name: Test Vim (with bad c-worksheetify-server)
run: |
$env:PATH = "test\bad_server_command;$env:PATH"
vim -Es -Nu init.vim -c 'silent Vader! test/bad_server_command/*.vader'
vim -Es -Nu init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

- name: Test Vim (with c-worksheetify-server not on PATH)
run: |
vim -Es -Nu init.vim -c 'silent Vader! test/command_not_found/*.vader'
vim -Es -Nu init.vim -c 'Vader! test/command_not_found/*.vader'
timeout-minutes: 2

- name: Test NeoVim
run: |
# Uploaded release compiled with recent Java.
$env:JAVA_HOME = $env:JAVA_HOME_21_X64
$env:PATH = "c-worksheet-instrumentor-0.2.6\bin;$env:PATH"
nvim -Es -u init.vim -c 'silent Vader! test/*.vader'
nvim -Es -u init.vim -c 'Vader! test/*.vader'
timeout-minutes: 2

- name: Kill Server
Expand All @@ -91,11 +91,11 @@ jobs:
- name: Test NeoVim (with bad c-worksheetify-server)
run: |
$env:PATH = "test\bad_server_command;$env:PATH"
nvim -Es -u init.vim -c 'silent Vader! test/bad_server_command/*.vader'
nvim -Es -u init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

- name: Test NeoVim (with bad c-worksheetify-server)
run: |
$env:PATH = "test\bad_server_command;$env:PATH"
nvim -Es -u init.vim -c 'silent Vader! test/bad_server_command/*.vader'
nvim -Es -u init.vim -c 'Vader! test/bad_server_command/*.vader'
timeout-minutes: 2

0 comments on commit 8465fab

Please sign in to comment.