forked from bitrise-steplib/steps-ios-auto-provision
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbitrise.yml
307 lines (284 loc) · 9.57 KB
/
bitrise.yml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
format_version: 5
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
# If you want to share this step into a StepLib
- BITRISE_STEP_ID: ios-auto-provision
- BITRISE_STEP_VERSION: "1.1.3"
- BITRISE_STEP_GIT_CLONE_URL: https://github.com/bitrise-steplib/steps-ios-auto-provision.git
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
# An example secret param, define it (A_SECRET_PARAM) in .bitrise.secrets.yml
- BITRISE_BUILD_URL: $BITRISE_BUILD_URL
- BITRISE_BUILD_API_TOKEN: $BITRISE_BUILD_API_TOKEN
- BITRISE_CERTIFICATE_URL: $BITRISE_CERTIFICATE_URL
- BITRISE_CERTIFICATE_PASSPHRASE: $BITRISE_CERTIFICATE_PASSPHRASE
- TEAM_ID: $TEAM_ID
- BITRISE_KEYCHAIN_PASSWORD: $BITRISE_KEYCHAIN_PASSWORD
- API_TOKEN: $API_TOKEN
- APP_SLUG: $APP_SLUG
- ORIG_BITRISE_SOURCE_DIR: $BITRISE_SOURCE_DIR
workflows:
test:
before_run:
- audit-this-step
steps:
- script:
title: bundle install
inputs:
- content: |-
#!/bin/bash
set -e
bundle install
- script:
title: rubocop
inputs:
- content: |-
#!/bin/bash
set -e
bundle exec rubocop
- script:
title: rspec
inputs:
- content: |-
#!/bin/bash
set -e
bundle exec rspec
- trigger-bitrise-workflow:
run_if: .IsCI
inputs:
- api_token: "$API_TOKEN"
- app_slug: "$APP_SLUG"
- workflow_id: test_entitlements
- trigger-bitrise-workflow:
run_if: .IsCI
inputs:
- api_token: "$API_TOKEN"
- app_slug: "$APP_SLUG"
- workflow_id: test_entitlements
- trigger-bitrise-workflow:
run_if: .IsCI
inputs:
- api_token: "$API_TOKEN"
- app_slug: "$APP_SLUG"
- workflow_id: test_entitlements
after_run:
- test_bundle_id
- test_xcode_managed
- test_workspace
- test_tvos
- test_tvos_development
- test_tvos_managed
- test_tvos_development_managed
test_bundle_id:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-ios-simple-objc.git
- BRANCH: bundle_id
- BITRISE_PROJECT_PATH: ios-simple-objc/ios-simple-objc.xcodeproj
- BITRISE_SCHEME: ios-simple-objc
- BITRISE_CONFIGURATION: Release
- DISTRIBUTION_TYPE: development
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_xcode_managed:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-ios-multi-target.git
- BRANCH: automatic
- BITRISE_PROJECT_PATH: code-sign-test.xcodeproj
- BITRISE_SCHEME: code-sign-test
- BITRISE_CONFIGURATION:
- DISTRIBUTION_TYPE: app-store
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_entitlements:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-ios-multi-target.git
- BRANCH: entitlements
- BITRISE_PROJECT_PATH: code-sign-test.xcodeproj
- BITRISE_SCHEME: code-sign-test
- BITRISE_CONFIGURATION:
- DISTRIBUTION_TYPE: app-store
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_workspace:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/ios-cocoapods-minimal-sample.git
- BRANCH: master
- BITRISE_PROJECT_PATH: iOSMinimalCocoaPodsSample/iOSMinimalCocoaPodsSample.xcworkspace
- BITRISE_SCHEME: iOSMinimalCocoaPodsSample
- BITRISE_CONFIGURATION:
- INSTALL_PODS: "true"
- DISTRIBUTION_TYPE: app-store
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_tvos:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-tvos-swift.git
- BRANCH: master
- BITRISE_PROJECT_PATH: NPO Live.xcworkspace
- BITRISE_SCHEME: NPO Live
- BITRISE_CONFIGURATION:
- INSTALL_PODS: "false"
- DISTRIBUTION_TYPE: app-store
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_tvos_development:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-tvos-swift.git
- BRANCH: master
- BITRISE_PROJECT_PATH: NPO Live.xcworkspace
- BITRISE_SCHEME: NPO Live
- BITRISE_CONFIGURATION:
- INSTALL_PODS: "false"
- DISTRIBUTION_TYPE: development
- GENERATE_PROFILES: "yes"
after_run:
- _common
test_tvos_managed:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-tvos-swift.git
- BRANCH: master
- BITRISE_PROJECT_PATH: NPO Live.xcworkspace
- BITRISE_SCHEME: NPO Live
- BITRISE_CONFIGURATION:
- INSTALL_PODS: "false"
- DISTRIBUTION_TYPE: app-store
- GENERATE_PROFILES: "no"
after_run:
- _common
test_tvos_development_managed:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-tvos-swift.git
- BRANCH: master
- BITRISE_PROJECT_PATH: NPO Live.xcworkspace
- BITRISE_SCHEME: NPO Live
- BITRISE_CONFIGURATION:
- INSTALL_PODS: "false"
- DISTRIBUTION_TYPE: development
- GENERATE_PROFILES: "no"
after_run:
- _common
_common:
steps:
- script:
title: Cleanup _tmp dir
inputs:
- content: |-
#!/bin/bash
set -ev
rm -rf "$ORIG_BITRISE_SOURCE_DIR/_tmp"
mkdir -p "$ORIG_BITRISE_SOURCE_DIR/_tmp"
- change-workdir:
title: Switch working dir to _tmp
inputs:
- path: $ORIG_BITRISE_SOURCE_DIR/_tmp
- is_create_path: "true"
- script:
title: Cleanup _tmp dir
inputs:
- content: |-
#!/bin/bash
git clone -b $BRANCH $SAMPLE_APP_URL .
- cocoapods-install:
run_if: '{{enveq "INSTALL_PODS" "true"}}'
title: CocoaPods install
- path::./:
title: Step Test
run_if: true
inputs:
- build_url: $BITRISE_BUILD_URL
- build_api_token: $BITRISE_BUILD_API_TOKEN
- certificate_urls: $BITRISE_CERTIFICATE_URL
- passphrases: $BITRISE_CERTIFICATE_PASSPHRASE
- team_id: $TEAM_ID
- distribution_type: $DISTRIBUTION_TYPE
- project_path: $BITRISE_PROJECT_PATH
- scheme: $BITRISE_SCHEME
- configuration: $BITRISE_CONFIGURATION
- verbose_log: "yes"
- generate_profiles: $GENERATE_PROFILES
- script:
title: Output test
inputs:
- content: |-
#!/bin/bash
set -e
echo "BITRISE_EXPORT_METHOD: $BITRISE_EXPORT_METHOD"
echo "BITRISE_DEVELOPER_TEAM: $BITRISE_DEVELOPER_TEAM"
echo "BITRISE_DEVELOPMENT_CODESIGN_IDENTITY: $BITRISE_DEVELOPMENT_CODESIGN_IDENTITY"
echo "BITRISE_DEVELOPMENT_PROFILE: $BITRISE_DEVELOPMENT_PROFILE"
echo "BITRISE_PRODUCTION_CODESIGN_IDENTITY: $BITRISE_PRODUCTION_CODESIGN_IDENTITY"
echo "BITRISE_PRODUCTION_PROFILE: $BITRISE_PRODUCTION_PROFILE"
if [ "$BITRISE_EXPORT_METHOD" != "$DISTRIBUTION_TYPE" ]; then exit 1; fi
- xcode-archive:
title: Xcode archive
inputs:
- export_method: $DISTRIBUTION_TYPE
- project_path: $BITRISE_PROJECT_PATH
- scheme: $BITRISE_SCHEME
- configuration: $BITRISE_CONFIGURATION
- output_tool: xcodebuild
- deploy-to-bitrise-io:
inputs:
- notify_user_groups: none
# ----------------------------------------------------------------
# --- workflows to create Release
create-release:
steps:
- script:
title:
inputs:
- content: |
#!/bin/bash
set -ex
go get -u github.com/bitrise-tools/releaseman
export CI=true
releaseman create --version $BITRISE_STEP_VERSION
# ----------------------------------------------------------------
# --- workflows to Share this step into a Step Library
audit-this-step:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
stepman audit --step-yml ./step.yml
share-this-step:
envs:
# if you want to share this step into a StepLib
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
- BITRISE_STEP_ID: $BITRISE_STEP_ID
- BITRISE_STEP_VERSION: $BITRISE_STEP_VERSION
- BITRISE_STEP_GIT_CLONE_URL: $BITRISE_STEP_GIT_CLONE_URL
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.
You're now ready to share this Step, just make sure that
the `BITRISE_STEP_ID` and `BITRISE_STEP_VERSION`
environments are set to the desired values!
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
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 "${BITRISE_STEP_VERSION}" --git "${BITRISE_STEP_GIT_CLONE_URL}"
bitrise share finish