summaryrefslogtreecommitdiff
path: root/platform/node/bitrise.yml
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-01-20 14:03:45 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-03-22 17:50:41 -0700
commit231e0b5de1b5074a2c954bd6e203cc5f0e6a2f46 (patch)
treeda814280488485ba9e9bf2476740bf2eef90abaf /platform/node/bitrise.yml
parent8bdfca53aea541af21303428841c9eee07261703 (diff)
downloadqtlocation-mapboxgl-231e0b5de1b5074a2c954bd6e203cc5f0e6a2f46.tar.gz
[node] Build OS X on Bitrise
Diffstat (limited to 'platform/node/bitrise.yml')
-rw-r--r--platform/node/bitrise.yml64
1 files changed, 64 insertions, 0 deletions
diff --git a/platform/node/bitrise.yml b/platform/node/bitrise.yml
new file mode 100644
index 0000000000..134925d6e8
--- /dev/null
+++ b/platform/node/bitrise.yml
@@ -0,0 +1,64 @@
+format_version: 1.1.0
+default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
+
+trigger_map:
+- pattern: "*"
+ is_pull_request_allowed: true
+ workflow: primary
+
+workflows:
+ primary:
+ steps:
+ - script:
+ title: Check for skipping CI
+ inputs:
+ - content: |-
+ #!/bin/bash
+ if [[ -n "$(echo $GIT_CLONE_COMMIT_MESSAGE_SUBJECT | sed -n '/\[skip ci\]/p')" ||
+ -n "$(echo $GIT_CLONE_COMMIT_MESSAGE_SUBJECT | sed -n '/\[ci skip\]/p')" ||
+ -n "$(echo $GIT_CLONE_COMMIT_MESSAGE_BODY | sed -n 's/\[skip ci\]/p')" ||
+ -n "$(echo $GIT_CLONE_COMMIT_MESSAGE_BODY | sed -n 's/\[ci skip\]/p')" ]]; then
+ envman add --key SKIPCI --value true
+ else
+ envman add --key SKIPCI --value false
+ fi
+ - select-xcode-version:
+ title: Select Xcode version
+ run_if: '{{enveq "SKIPCI" "false"}}'
+ - script:
+ title: Run build script
+ run_if: '{{enveq "SKIPCI" "false"}}'
+ inputs:
+ - content: |-
+ #!/bin/bash
+ set -e
+ set -o pipefail
+ export TRAVIS_OS_NAME=osx
+ export TRAVIS_TAG=$BITRISE_GIT_TAG
+ export NODE_VERSION=4
+ export CXX=clang++
+ export CC=clang
+ source ./scripts/set_compiler.sh
+ ./platform/node/scripts/install.sh
+ if command -v ccache >/dev/null 2>&1; then ccache --zero-stats ; fi
+ ./platform/node/scripts/run.sh
+ if command -v ccache >/dev/null 2>&1; then ccache --show-stats ; fi
+ ./platform/node/scripts/after_script.sh
+ - slack:
+ title: Post to Slack
+ run_if: '{{enveq "SKIPCI" "false"}}'
+ inputs:
+ - webhook_url: "$SLACK_HOOK_URL"
+ - channel: "#gl-bots"
+ - from_username: 'Bitrise Node OS X'
+ - from_username_on_error: 'Bitrise Node OS X'
+ - message: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
+ for <https://github.com/mapbox/mapbox-gl-native/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-gl-native@${BITRISE_GIT_BRANCH}>
+ by ${GIT_CLONE_COMMIT_COMMITER_NAME}
+ passed'
+ - message_on_error: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
+ for <https://github.com/mapbox/mapbox-gl-native/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-gl-native@${BITRISE_GIT_BRANCH}>
+ by ${GIT_CLONE_COMMIT_COMMITER_NAME}
+ failed'
+ - icon_url: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-icon-128.png
+ - icon_url_on_error: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-error-icon-128.png