-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstep.yml
88 lines (83 loc) · 3.48 KB
/
step.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
title: Android Build for UI Testing
summary: Builds your Android project with gradle with the belonging AndroidTest variant.
description: Builds your Android project with gradle with the belonging AndroidTest variant.
website: https://github.com/bitrise-steplib/bitrise-step-android-build-for-ui-testing
source_code_url: https://github.com/bitrise-steplib/bitrise-step-android-build-for-ui-testing
support_url: https://github.com/bitrise-steplib/bitrise-step-android-build-for-ui-testing/issues
project_type_tags:
- android
- react-native
type_tags:
- build
is_requires_admin_user: true
is_always_run: false
is_skippable: false
run_if: ""
toolkit:
go:
package_name: github.com/bitrise-steplib/bitrise-step-android-build-for-ui-testing
inputs:
- project_location: $BITRISE_SOURCE_DIR
opts:
title: Project Location
summary: "The root directory of your android project, for example, where your root build gradle file exist (also gradlew, settings.gradle, etc...)"
description: "The root directory of your android project, for example, where your root build gradle file exist (also gradlew, settings.gradle, etc...)"
is_required: true
- module: ""
opts:
title: Module
summary: |
Set the module that you want to build. To see your available modules please open your project in Android Studio and go in [Project Structure] and see the list on the left.
description: |
Set the module that you want to build. To see your available modules please open your project in Android Studio and go in [Project Structure] and see the list on the left.
is_required: true
- variant: ""
opts:
title: Variant
summary: |
Set the variant that you want to build. To see your available variants please open your project in Android Studio and go in [Project Structure] -> variants section.
description: |
Set the variant that you want to build. To see your available variants please open your project in Android Studio and go in [Project Structure] -> variants section.
is_required: true
- apk_path_pattern: "*/build/outputs/apk/*.apk"
opts:
category: Options
title: APK location pattern
summary: Will find the APK files with the given pattern.
description: Will find the APK files with the given pattern.
is_required: true
- cache_level: "only_deps"
opts:
category: Options
title: Set the level of cache
description: |-
`all` - will cache build cache and dependencies
`only_deps` - will cache dependencies only
`none` - will not cache anything
is_required: true
value_options:
- "all"
- "only_deps"
- "none"
- arguments:
opts:
category: Options
title: Additional Gradle Arguments
summary: Extra arguments passed to the gradle task
description: Extra arguments passed to the gradle task
is_required: false
outputs:
- BITRISE_APK_PATH:
opts:
title: "Path of the generated APK"
summary: "Path of the generated (and copied) APK - after filtering."
description: |-
This output will include the path of the generated APK
after filtering based on the filter inputs.
- BITRISE_TEST_APK_PATH:
opts:
title: "Path of the generated test APK"
summary: "Path of the generated (and copied) test APK - after filtering."
description: |-
This output will include the path of the generated test APK
after filtering based on the filter inputs.