summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2017-03-10 09:15:05 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2017-03-10 09:59:28 -0800
commit12b99f0085c15ed59d10b6cc2003e6ee367bdce3 (patch)
tree7816c502f5ab9ae34e422a6d798658934f8141ef /platform
parent6ceb0c832b771984d6a434770d02ee7c195496e3 (diff)
downloadqtlocation-mapboxgl-12b99f0085c15ed59d10b6cc2003e6ee367bdce3.tar.gz
[macos] Simplify bitrise.yml
Diffstat (limited to 'platform')
-rw-r--r--platform/macos/bitrise.yml38
1 files changed, 3 insertions, 35 deletions
diff --git a/platform/macos/bitrise.yml b/platform/macos/bitrise.yml
index 56652e7895..851c48b4f3 100644
--- a/platform/macos/bitrise.yml
+++ b/platform/macos/bitrise.yml
@@ -12,33 +12,16 @@ workflows:
primary:
steps:
- script:
- title: Install Dependencies
+ title: Build
inputs:
- content: |-
#!/bin/bash
set -eu -o pipefail
brew install cmake
gem install xcpretty --no-rdoc --no-ri
- - is_debug: 'yes'
- - script:
- title: Generate Workspace
- inputs:
- - content: |-
- #!/bin/bash
- set -eu -o pipefail
- export BUILDTYPE=Debug
- make xproj
- - is_debug: 'yes'
- - script:
- title: Run Core and SDK Unit Tests
- inputs:
- - content: |-
- #!/bin/bash
- set -eu -o pipefail
export BUILDTYPE=Debug
export XCPRETTY="| tee ${BITRISE_DEPLOY_DIR}/raw-xcodebuild-output.txt | xcpretty --color --report html --output ${BITRISE_DEPLOY_DIR}/xcode-test-results.html"
make run-test
- - is_debug: 'yes'
- deploy-to-bitrise-io:
title: Deploy to Bitrise.io
inputs:
@@ -65,28 +48,13 @@ workflows:
nightly-release:
steps:
- script:
- title: Install Dependencies
+ title: Build
inputs:
- content: |-
#!/bin/bash
set -eu -o pipefail
brew install cmake
- - is_debug: 'yes'
- - script:
- title: Configure AWS-CLI
- inputs:
- - content: |-
- #!/bin/bash
apt-get install -y python-pip python-dev build-essential
pip install awscli
- - script:
- title: Build package
- inputs:
- - content: |-
- #!/bin/bash
- set -eu -o pipefail
- export BUILDTYPE=Release
- export SYMBOLS=NO
- make xpackage
+ BUILDTYPE=Release SYMBOLS=NO make xpackage
CLOUDWATCH=true platform/macos/scripts/metrics.sh
- - is_debug: 'yes'