summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Kitchen <andrew.kitchen@mapbox.com>2018-01-05 16:34:18 -0800
committerAndrew Kitchen <akitchen@gmail.com>2018-01-19 20:28:57 -0500
commit7f6d99b52e6cfca138ebaa69739384618388231d (patch)
tree535f16bc958349de61f1a23a736e2626af7a48c0 /Makefile
parentd0193c5b2b7140f54d6f166fa4e8a711a045915e (diff)
downloadqtlocation-mapboxgl-7f6d99b52e6cfca138ebaa69739384618388231d.tar.gz
Adds an `ios-integration-test` Makefile target to run on CI (circle.yml)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
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)