File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 52
52
os : ${{ matrix.os }}
53
53
legacy : ${{ matrix.legacy && true || false }}
54
54
xcode : ${{ matrix.xcode }}
55
+ testgui : ${{ matrix.testgui && true || false }}
55
56
publish : ${{ matrix.publish && true || false }}
56
57
publish_postfix : ${{ matrix.publish_postfix }}
57
58
optimized : ${{ matrix.optimized && true || false }}
Original file line number Diff line number Diff line change 13
13
type : boolean
14
14
xcode :
15
15
type : string
16
+ testgui :
17
+ type : boolean
16
18
publish :
17
19
type : boolean
18
20
publish_postfix :
@@ -363,7 +365,7 @@ jobs:
363
365
make ${MAKE_BUILD_ARGS} -j${NPROC} -C src unittesttargets
364
366
365
367
- name : Test Vim
366
- if : startsWith(github.ref, 'refs/tags/') || !matrix .testgui
368
+ if : startsWith(github.ref, 'refs/tags/') || !inputs .testgui
367
369
timeout-minutes : 30
368
370
run : |
369
371
defaults delete org.vim.MacVim # Clean up stale states
@@ -373,7 +375,7 @@ jobs:
373
375
make ${MAKE_BUILD_ARGS} -C src test
374
376
375
377
- name : Test Vim (GUI)
376
- if : startsWith(github.ref, 'refs/tags/') || matrix .testgui
378
+ if : startsWith(github.ref, 'refs/tags/') || inputs .testgui
377
379
timeout-minutes : 30
378
380
run : |
379
381
defaults delete org.vim.MacVim # Clean up stale states
You can’t perform that action at this time.
0 commit comments