File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ parameters:
28
28
description : Should we cache after yarn install? Defaults to true
29
29
type : boolean
30
30
default : true
31
+ on_after_initialize :
32
+ description : A custom command to run right after yarn install.
33
+ type : string
34
+ default : " "
31
35
# For the build command
32
36
project_path :
33
37
description : The path to the root of the Android project you want to build, relative to the root of the repository.
@@ -37,14 +41,14 @@ parameters:
37
41
description : The build type to build. This is normally either "debug" or "release" but you may have custom build types configured for your app.
38
42
type : string
39
43
default : " debug"
40
- on_after_initialize :
41
- description : A custom command to run right after yarn install.
42
- type : string
43
- default : " "
44
44
build_cache :
45
45
description : Should we cache after Gradle build? Defaults to true
46
46
type : boolean
47
47
default : true
48
+ assemble_android_test :
49
+ description : Configure the android tests to run. Defaults to assembleAndroidTest
50
+ type : string
51
+ default : assembleAndroidTest
48
52
49
53
steps :
50
54
- when :
68
72
project_path : <<parameters.project_path>>
69
73
build_type : <<parameters.build_type>>
70
74
cache : <<parameters.build_cache>>
75
+ assemble_android_test : <<parameters.assemble_android_test>>
71
76
- when :
72
77
condition : <<parameters.persist_to_workspace>>
73
78
steps :
You can’t perform that action at this time.
0 commit comments