diff options
author | Jason Wray <jason@mapbox.com> | 2017-10-19 18:42:20 -0400 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2017-10-25 12:48:25 -0400 |
commit | 8bc7e4957d85816f3e013e6e07a91a48929080f3 (patch) | |
tree | 1dbc7fcaa83a4202413a4c712212f1ccaeb503bd /Makefile | |
parent | ba8342a12e332a9caf2a21bb022bbc9f2b2214b3 (diff) | |
download | qtlocation-mapboxgl-8bc7e4957d85816f3e013e6e07a91a48929080f3.tar.gz |
[ios, build] Add CircleCI iOS builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -222,6 +222,14 @@ iproj: $(IOS_PROJ_PATH) ios-test: $(IOS_PROJ_PATH) set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' test $(XCPRETTY) +.PHONY: ios-sanitize-address +ios-sanitize-address: $(IOS_PROJ_PATH) + set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' -enableAddressSanitizer YES test $(XCPRETTY) + +.PHONY: ios-sanitize-thread +ios-sanitize-thread: $(IOS_PROJ_PATH) + set -o pipefail && $(IOS_XCODEBUILD_SIM) -scheme 'CI' -enableThreadSanitizer YES test $(XCPRETTY) + .PHONY: ipackage ipackage: $(IOS_PROJ_PATH) FORMAT=$(FORMAT) BUILD_DEVICE=$(BUILD_DEVICE) SYMBOLS=$(SYMBOLS) \ |