From 9f4bd86f465001894ec479bfff755f8066f0c854 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Sun, 3 Jul 2022 22:33:20 +0800 Subject: [PATCH] Makefile // Stop unit tests from being automatically triggered by GitHub CI. --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 54a78466..e61da3e0 100644 --- a/Makefile +++ b/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