Makefile // Stop unit tests from being automatically triggered by GitHub CI.
This commit is contained in:
parent
28af3b70a7
commit
e2be81865e
10
Makefile
10
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue