From 7f6d99b52e6cfca138ebaa69739384618388231d Mon Sep 17 00:00:00 2001 From: Andrew Kitchen Date: Fri, 5 Jan 2018 16:34:18 -0800 Subject: Adds an `ios-integration-test` Makefile target to run on CI (circle.yml) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2b5931e0e3..862201d8d1 100644 --- a/Makefile +++ b/Makefile @@ -231,6 +231,10 @@ ios-lint: ios-test: $(IOS_PROJ_PATH) set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' test $(XCPRETTY) +.PHONY: ios-integration-test +ios-integration-test: $(IOS_PROJ_PATH) + set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'Integration Test Harness' test $(XCPRETTY) + .PHONY: ios-sanitize-address ios-sanitize-address: $(IOS_PROJ_PATH) set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' -enableAddressSanitizer YES test $(XCPRETTY) -- cgit v1.2.1