diff options
author | Jason Wray <jason@mapbox.com> | 2017-12-18 16:58:52 -0800 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2018-03-26 16:25:07 -0400 |
commit | 4b8c27edef8c87c00ef6e5be556f8a803723a5c0 (patch) | |
tree | d3a6ccfda911f3b60db3628f7cdcb5b23ba1e121 /circle.yml | |
parent | 9a663fb4799bedb85ca583d7f23a1a67277d220b (diff) | |
download | qtlocation-mapboxgl-4b8c27edef8c87c00ef6e5be556f8a803723a5c0.tar.gz |
[ios, build] Run undefined behavior sanitizer on CircleCI
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/circle.yml b/circle.yml index 3f67f8f6e6..3b85eaaf31 100644 --- a/circle.yml +++ b/circle.yml @@ -32,8 +32,8 @@ workflows: - linux-gcc5-release-qt4 - linux-gcc5-release-qt5 - ios-debug + - ios-sanitize #- ios-sanitize-address - - ios-sanitize-thread - ios-release: filters: tags: @@ -732,7 +732,7 @@ jobs: - *save-cache # ------------------------------------------------------------------------------ - ios-sanitize-address: + ios-sanitize: macos: xcode: "9.2.0" environment: @@ -745,13 +745,13 @@ jobs: - *restore-cache - *reset-ccache-stats - run: - name: Build and run SDK unit tests with address sanitizer - command: make ios-sanitize-address + name: Build and run SDK unit tests with thread and undefined behavior sanitizers + command: make ios-sanitize - *show-ccache-stats - *save-cache # ------------------------------------------------------------------------------ - ios-sanitize-thread: + ios-sanitize-address: macos: xcode: "9.2.0" environment: @@ -764,8 +764,8 @@ jobs: - *restore-cache - *reset-ccache-stats - run: - name: Build and run SDK unit tests with thread sanitizer - command: make ios-sanitize-thread + name: Build and run SDK unit tests with address sanitizer + command: make ios-sanitize-address - *show-ccache-stats - *save-cache |