Makefile // Stop unit tests from being automatically triggered by GitHub CI.
This commit is contained in:
parent
20bbd7143b
commit
9f4bd86f46
10
Makefile
10
Makefile
|
@ -1,4 +1,4 @@
|
||||||
+.PHONY: all test
|
+.PHONY: all
|
||||||
|
|
||||||
all: release
|
all: release
|
||||||
install: install-release
|
install: install-release
|
||||||
|
@ -17,9 +17,6 @@ release:
|
||||||
debug:
|
debug:
|
||||||
xcodebuild -project vChewing.xcodeproj -scheme vChewingInstaller -configuration Debug $(BUILD_SETTINGS) build
|
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
|
DSTROOT = /Library/Input Methods
|
||||||
VC_APP_ROOT = $(DSTROOT)/vChewing.app
|
VC_APP_ROOT = $(DSTROOT)/vChewing.app
|
||||||
|
|
||||||
|
@ -62,3 +59,8 @@ clean:
|
||||||
|
|
||||||
gc:
|
gc:
|
||||||
git reflog expire --expire=now --all && git gc --prune=now --aggressive
|
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