Makefile // Stop unit tests from being automatically triggered by GitHub CI.

This commit is contained in:
ShikiSuen 2022-07-03 22:33:20 +08:00
parent 28af3b70a7
commit e2be81865e
1 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
+.PHONY: all test
+.PHONY: all
all: release
install: install-release
@ -17,9 +17,6 @@ release:
debug:
xcodebuild -project vChewing.xcodeproj -scheme vChewingInstaller -configuration Debug $(BUILD_SETTINGS) build
test:
xcodebuild -project vChewing.xcodeproj -scheme vChewing -configuration Debug test
DSTROOT = /Library/Input Methods
VC_APP_ROOT = $(DSTROOT)/vChewing.app
@ -62,3 +59,8 @@ clean:
gc:
git reflog expire --expire=now --all && git gc --prune=now --aggressive
.PHONY: test
test:
xcodebuild -project vChewing.xcodeproj -scheme vChewing -configuration Debug test