-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbitrise.yml
More file actions
323 lines (288 loc) · 8.87 KB
/
Copy pathbitrise.yml
File metadata and controls
323 lines (288 loc) · 8.87 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
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
format_version: 7
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- BITRISE_STEP_ID: xctest-html-report
- BITRISE_STEP_VERSION: "0.2.1"
- BITRISE_STEP_GIT_CLONE_URL: https://github.com/BirmacherAkos/bitrise-step-xctest-html-report.git
- SAMPLE_APP_URL: https://github.com/BirmacherAkos/bitrise-samples_apps_ios_xcode-10_default.git
- ORIGIN_SOURCE_DIR: $BITRISE_SOURCE_DIR
- MULTIPLE_TEST_RESULT: "false"
workflows:
ci_xcode_10:
description:
"Using 1.7.0 version"
envs:
- VERSION: "1.7.0"
after_run:
- ci
ci_xcode_11:
description:
"Using 2.0.0 version"
envs:
- VERSION: "2.0.0"
after_run:
- ci
ci_xcode_12:
description:
"Using latest version"
envs:
- VERSION: "latest"
after_run:
- ci
ci:
before_run:
- audit-this-step
steps:
- go-list:
- golint:
- errcheck:
- go-test:
- codecov:
run_if: .IsCI
inputs:
- other_options: -f ${GO_CODE_COVERAGE_REPORT_PATH}
- CODECOV_TOKEN: "$CODECOV_TOKEN"
- script:
run_if: ".IsCI"
title: Install Xcpretty
inputs:
- content: |
#!/bin/bash
gem install xcpretty
after_run:
- generate_test
- test_one_test_result_with_junit
- test_one_test_result_without_junit
- test_one_test_result_with_junit_verbose
- test_one_test_result_without_junit_verbose
- test_multiple_test_result_with_junit
- test_multiple_test_result_without_junit
- test_multiple_test_result_with_junit_verbose
- test_multiple_test_result_without_junit_verbose
#
# One test result
test_one_test_result_with_junit:
envs:
- MULTIPLE_TEST_RESULT: "false"
- TEST_RESULT_PATH: ./folder/sub_folder/Test.xcresult
- GENERATE_JUNIT: "yes"
- VERBOSE: "yes"
after_run:
- common
- run_test
test_one_test_result_without_junit:
envs:
- MULTIPLE_TEST_RESULT: "false"
- TEST_RESULT_PATH: ./folder/sub_folder/Test.xcresult
- GENERATE_JUNIT: "no"
- VERBOSE: "no"
after_run:
- common
- run_test
#
# One test result with verbose log enabled
test_one_test_result_with_junit_verbose:
envs:
- MULTIPLE_TEST_RESULT: "false"
- TEST_RESULT_PATH: ./folder/sub_folder/Test.xcresult
- GENERATE_JUNIT: "yes"
- VERBOSE: "yes"
after_run:
- common
- run_test
test_one_test_result_without_junit_verbose:
envs:
- MULTIPLE_TEST_RESULT: "false"
- TEST_RESULT_PATH: ./folder/sub_folder/Test.xcresult
- GENERATE_JUNIT: "no"
- VERBOSE: "yes"
after_run:
- common
- run_test
#
# Multiple test result
test_multiple_test_result_with_junit:
envs:
- MULTIPLE_TEST_RESULT: "true"
- TEST_RESULT_PATH: |
./folder/sub_folder/Test.xcresult
./folder/sub_folder/Test_2.xcresult
./folder/sub_folder/Test_3.xcresult
- GENERATE_JUNIT: "yes"
- VERBOSE: "no"
after_run:
- common
- run_test
test_multiple_test_result_without_junit:
envs:
- MULTIPLE_TEST_RESULT: "true"
- TEST_RESULT_PATH: |
./folder/sub_folder/Test.xcresult
./folder/sub_folder/Test_2.xcresult
./folder/sub_folder/Test_3.xcresult
- GENERATE_JUNIT: "no"
- VERBOSE: "no"
after_run:
- common
- run_test
#
# Multiple test result with verbose log enabled
test_multiple_test_result_with_junit_verbose:
envs:
- MULTIPLE_TEST_RESULT: "true"
- TEST_RESULT_PATH: |
./folder/sub_folder/Test.xcresult
./folder/sub_folder/Test_2.xcresult
./folder/sub_folder/Test_3.xcresult
- GENERATE_JUNIT: "yes"
- VERBOSE: "yes"
after_run:
- common
- run_test
test_multiple_test_result_without_junit_verbose:
envs:
- MULTIPLE_TEST_RESULT: "true"
- TEST_RESULT_PATH: |
./folder/sub_folder/Test.xcresult
./folder/sub_folder/Test_2.xcresult
./folder/sub_folder/Test_3.xcresult
- GENERATE_JUNIT: "no"
- VERBOSE: "yes"
after_run:
- common
- run_test
run_test:
steps:
- path::./:
title: Test one test result
run_if: true
is_skippable: false
inputs:
- test_result_path: $TEST_RESULT_PATH
- generate_junit: $GENERATE_JUNIT
- verbose: $VERBOSE
- version: $VERSION
generate_test:
envs:
- BITRISE_PROJECT_PATH: Xcode-10_default.xcodeproj
- BITRISE_SCHEME: Xcode-10_default
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
cd ${ORIGIN_SOURCE_DIR}
rm -rf "./_tmp"
mkdir "_tmp"
- 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
- script:
title: Git clone sample app
inputs:
- content: |
#!/bin/bash
git clone $SAMPLE_APP_URL .
- xcode-test: {}
common:
steps:
- 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
- script:
run_if: '{{getenv "MULTIPLE_TEST_RESULT" | eq "false"}}'
title: Copy Test.xcresult
inputs:
- content: |
#!/bin/bash
set -ex
mkdir -p folder/sub_folder
cp -R $BITRISE_XCRESULT_PATH ./folder/sub_folder/Test.xcresult
- script:
run_if: '{{getenv "MULTIPLE_TEST_RESULT" | eq "true"}}'
title: Copy & multiply Test.xcresult
inputs:
- content: |
#!/bin/bash
set -ex
mkdir -p folder/sub_folder
cp -R $BITRISE_XCRESULT_PATH ./folder/sub_folder/Test.xcresult
cp -R $BITRISE_XCRESULT_PATH ./folder/sub_folder/Test_2.xcresult
cp -R $BITRISE_XCRESULT_PATH ./folder/sub_folder/Test_3.xcresult
# ----------------------------------------------------------------
# --- workflow to Release a new version
create-release:
steps:
- script:
title:
inputs:
- content: |
#!/bin/bash
set -e
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