summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--circle.yml12
-rwxr-xr-xplatform/ios/scripts/code-coverage.sh5
2 files changed, 9 insertions, 8 deletions
diff --git a/circle.yml b/circle.yml
index a5b0020754..8fa6f2cc9d 100644
--- a/circle.yml
+++ b/circle.yml
@@ -875,10 +875,6 @@ jobs:
- install-macos-dependencies
- install-dependencies
- build-ios-test
- - run:
- name: Get iOS code coverage
- command: |
- platform/ios/scripts/code-coverage.sh
- check-public-symbols
- run:
name: Check symbol namespacing for mapbox-events-ios
@@ -907,6 +903,10 @@ jobs:
- run:
name: Build and run SDK unit tests with thread and undefined behavior sanitizers
command: make ios-sanitize
+ - run:
+ name: Get iOS code coverage
+ command: |
+ platform/ios/scripts/code-coverage.sh
- save-dependencies
- collect-xcode-build-logs
- upload-xcode-build-logs
@@ -973,6 +973,10 @@ jobs:
platform/ios/scripts/deploy-snapshot.sh
fi
- run:
+ name: Get iOS code coverage
+ command: |
+ platform/ios/scripts/code-coverage.sh
+ - run:
name: Record size
command: platform/ios/scripts/metrics.sh
- run:
diff --git a/platform/ios/scripts/code-coverage.sh b/platform/ios/scripts/code-coverage.sh
index 05ea84b37a..2bc18a7706 100755
--- a/platform/ios/scripts/code-coverage.sh
+++ b/platform/ios/scripts/code-coverage.sh
@@ -26,7 +26,4 @@ echo $file_name
#
# upload to AWS
#
-# if [ -z `which aws` ]; then
-# brew install awscli
-# fi
-aws s3 cp $file_name.json https://s3.amazonaws.com/mapbox-loading-dock/raw/mobile.coverage/ \ No newline at end of file
+aws s3 cp $file_name.json s3://mapbox-loading-dock/raw/mobile.coverage/ \ No newline at end of file