summaryrefslogtreecommitdiff
path: root/platform/ios/bitrise.yml
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/bitrise.yml')
-rw-r--r--platform/ios/bitrise.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/platform/ios/bitrise.yml b/platform/ios/bitrise.yml
index 93d1d4afd8..270d5b999b 100644
--- a/platform/ios/bitrise.yml
+++ b/platform/ios/bitrise.yml
@@ -11,22 +11,7 @@ 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
- - script:
title: Install Dependencies
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- content: |-
#!/bin/bash
@@ -37,7 +22,6 @@ workflows:
- is_debug: 'yes'
- script:
title: Generate Workspace
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- content: |-
#!/bin/bash
@@ -47,18 +31,15 @@ workflows:
- is_debug: 'yes'
- xcode-test:
title: Run SDK Unit Tests
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- project_path: platform/ios/ios.xcworkspace
- scheme: CI
- deploy-to-bitrise-io:
title: Deploy to Bitrise.io
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- notify_user_groups: none
- slack:
title: Post to Slack
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- webhook_url: "$SLACK_HOOK_URL"
- channel: "#gl-bots"