-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbitrise.yml
More file actions
97 lines (93 loc) · 3.76 KB
/
Copy pathbitrise.yml
File metadata and controls
97 lines (93 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
format_version: "4"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: ""
app:
envs:
- API_TOKEN: $API_TOKEN
- BITRISE_APP_SLUG: $BITRISE_APP_SLUG
- WORKFLOW_ID: $WORKFLOW_ID
- EXPORTED_ENVIRONMENT: $EXPORTED_ENVIRONMENT
- BITRISE_STEP_ID: trigger-bitrise-workflow
- BITRISE_STEP_GIT_CLONE_URL: https://github.com/DroidsOnRoids/bitrise-step-trigger-bitrise-workflow.git
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
- BITRISE_GO_PACKAGES: github.com/DroidsOnRoids/bitrise-step-trigger-bitrise-workflow
opts:
is_expand: false
workflows:
audit-this-step:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
stepman audit --step-yml ./step.yml
share-this-step:
description: |-
If this is the first time you try to share a Step you should
first call: $ bitrise share
This will print you a guide, and information about how Step sharing
works. Please read it at least once!
As noted in the Step sharing guide you'll have to fork the
StepLib you want to share this step into. Once you're done with forking
the repository you should set your own fork's git clone URL
in the `.bitrise.secrets.yml` file, or here in the `envs` section,
as the value of the `MY_STEPLIB_REPO_FORK_GIT_URL` environment.
To share this Step into a StepLib you can just run: $ bitrise run share-this-step
Once it finishes the only thing left is to actually create a Pull Request,
the way described in the guide printed at the end of the process.
before_run:
- audit-this-step
envs:
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
- BITRISE_STEP_ID: $BITRISE_STEP_ID
- BITRISE_STEP_GIT_CLONE_URL: $BITRISE_STEP_GIT_CLONE_URL
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
bitrise share start -c "${MY_STEPLIB_REPO_FORK_GIT_URL}"
bitrise share create --stepid "${BITRISE_STEP_ID}" --tag "$(git describe --tags --exact-match)" --git "${BITRISE_STEP_GIT_CLONE_URL}"
bitrise share finish
test:
steps:
- errcheck: {}
- golint: {}
- go-test: {}
- change-workdir:
title: Switch working dir to test / _tmp dir
description: |-
To prevent step testing issues, like referencing relative
files with just './some-file' in the step's code, which would
work for testing the step from this directory directly
but would break if the step is included in another `bitrise.yml`.
run_if: "true"
inputs:
- path: ./_tmp
- is_create_path: true
- path::./:
title: Step Test
run_if: '{{getenv "BITRISE_APP_SLUG" | ne ""}}'
inputs:
- workflow_id: $WORKFLOW_ID
- api_token: $API_TOKEN
- exported_environment_variable_names: $EXPORTED_ENVIRONMENT
- script:
title: Step Test skip info
run_if: '{{enveq "BITRISE_APP_SLUG" ""}}'
inputs:
- content: |-
#!/usr/bin/env bash
echo "Step test skipped due to missing App slug"
- script:
title: Output veriables demo
inputs:
- content: |
#!/usr/bin/env bash
echo "Outputs generated by this step:"
echo "TRIGGERED_BUILD_SLUG: $TRIGGERED_BUILD_SLUG"
echo "TRIGGERED_BUILD_NUMBER: $TRIGGERED_BUILD_NUMBER"
echo "TRIGGERED_BUILD_URL: $TRIGGERED_BUILD_URL"
echo "TRIGGERED_WORKFLOW_ID: $TRIGGERED_WORKFLOW_ID"