Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/macvim-buildtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ jobs:
id: test_macvim
timeout-minutes: 10
run: |
echo '::group::Build MacVim test binaries'
# Build test binaries in a separate step to allow grouping in the CI output to make the output more concise.
make ${MAKE_BUILD_ARGS} -C src macvim-tests-binaries
echo '::endgroup::'
make ${MAKE_BUILD_ARGS} -C src macvim-tests

- name: Upload failed MacVim test results
Expand Down
5 changes: 4 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3753,7 +3753,7 @@ Makefile:

##############################################################################
### MacVim GUI
.PHONY: macvim macvim-dmg macvim-dmg-legacy macvimclean macvim-signed macvim-signed-adhoc macvim-dmg-release macvim-dmg-release-legacy macvim-install-runtime macvim-xcodeproj-compat
.PHONY: macvim macvim-dmg macvim-dmg-legacy macvimclean macvim-tests-binaries macvim-tests macvim-signed macvim-signed-adhoc macvim-dmg-release macvim-dmg-release-legacy macvim-install-runtime macvim-xcodeproj-compat

RUNTIME_FOLDER_LIST = MacVim/auto/runtime_folder_list.xcfilelist

Expand All @@ -3777,6 +3777,9 @@ $(RUNTIME_FOLDER_LIST):
macvim: $(VIMTARGET) $(RUNTIME_FOLDER_LIST)
xcodebuild -project MacVim/MacVim.xcodeproj $(XCODEFLAGS)

macvim-tests-binaries:
xcodebuild build-for-testing -project MacVim/MacVim.xcodeproj -scheme MacVim $(XCODEFLAGS)

macvim-tests:
xcodebuild test -project MacVim/MacVim.xcodeproj -scheme MacVim $(XCODEFLAGS)

Expand Down
Loading