File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5252 os : ${{ matrix.os }}
5353 legacy : ${{ matrix.legacy && true || false }}
5454 xcode : ${{ matrix.xcode }}
55+ testgui : ${{ matrix.testgui && true || false }}
5556 publish : ${{ matrix.publish && true || false }}
5657 publish_postfix : ${{ matrix.publish_postfix }}
5758 optimized : ${{ matrix.optimized && true || false }}
Original file line number Diff line number Diff line change 1313 type : boolean
1414 xcode :
1515 type : string
16+ testgui :
17+ type : boolean
1618 publish :
1719 type : boolean
1820 publish_postfix :
@@ -363,7 +365,7 @@ jobs:
363365 make ${MAKE_BUILD_ARGS} -j${NPROC} -C src unittesttargets
364366
365367 - name : Test Vim
366- if : startsWith(github.ref, 'refs/tags/') || !matrix .testgui
368+ if : startsWith(github.ref, 'refs/tags/') || !inputs .testgui
367369 timeout-minutes : 30
368370 run : |
369371 defaults delete org.vim.MacVim # Clean up stale states
@@ -373,7 +375,7 @@ jobs:
373375 make ${MAKE_BUILD_ARGS} -C src test
374376
375377 - name : Test Vim (GUI)
376- if : startsWith(github.ref, 'refs/tags/') || matrix .testgui
378+ if : startsWith(github.ref, 'refs/tags/') || inputs .testgui
377379 timeout-minutes : 30
378380 run : |
379381 defaults delete org.vim.MacVim # Clean up stale states
You can’t perform that action at this time.
0 commit comments