summaryrefslogtreecommitdiff
path: root/platform/macos/bitrise.yml
diff options
context:
space:
mode:
Diffstat (limited to 'platform/macos/bitrise.yml')
-rw-r--r--platform/macos/bitrise.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/platform/macos/bitrise.yml b/platform/macos/bitrise.yml
index 2de6bce1fc..56652e7895 100644
--- a/platform/macos/bitrise.yml
+++ b/platform/macos/bitrise.yml
@@ -12,21 +12,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
@@ -36,7 +22,6 @@ workflows:
- is_debug: 'yes'
- script:
title: Generate Workspace
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- content: |-
#!/bin/bash
@@ -46,7 +31,6 @@ workflows:
- is_debug: 'yes'
- script:
title: Run Core and SDK Unit Tests
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- content: |-
#!/bin/bash
@@ -57,14 +41,12 @@ workflows:
- is_debug: 'yes'
- deploy-to-bitrise-io:
title: Deploy to Bitrise.io
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- deploy_path: "test/fixtures"
- notify_user_groups: none
- is_compress: 'true'
- slack:
title: Post to Slack
- run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- webhook_url: "$SLACK_HOOK_URL"
- channel: "#gl-bots"