File tree Expand file tree Collapse file tree 5 files changed +27
-0
lines changed Expand file tree Collapse file tree 5 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,15 @@ parameters:
47
47
Whether to compress the build output to a ".tar.gz" archive.
48
48
This is recommended if you want to download the built artifacts from the CircleCI web app.
49
49
If left to "false" for decompressed WebGL builds, you can run the project directly from the CircleCI web app.
50
+ no_output_timeout :
51
+ type : string
52
+ default : " 10m"
53
+ description : Elapsed time the command can run without output.
50
54
51
55
steps :
52
56
- run :
53
57
name : << parameters.step-name >>
58
+ no_output_timeout : << parameters.no_output_timeout >>
54
59
environment :
55
60
PARAM_BUILD_NAME : << parameters.build-name >>
56
61
PARAM_BUILD_TARGET : << parameters.build-target >>
Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ parameters:
40
40
description : |
41
41
Enter the path of your Unity project.
42
42
This should be the directory that has an "Assets" folder inside it.
43
+ no_output_timeout :
44
+ type : string
45
+ default : " 10m"
46
+ description : Elapsed time the command can run without output.
43
47
44
48
steps :
45
49
- restore_cache :
48
52
- unity-deps-{{ arch }}-<< parameters.cache-version >>-<<# parameters.include-branch-in-cache-key >>{{ .Branch }}<</ parameters.include-branch-in-cache-key >>
49
53
- run :
50
54
name : Prepare the environment
55
+ no_output_timeout : << parameters.no_output_timeout >>
51
56
environment :
52
57
PARAM_UNITY_USERNAME_VAR_NAME : << parameters.unity-username-var-name >>
53
58
PARAM_UNITY_PASSWORD_VAR_NAME : << parameters.unity-password-var-name >>
Original file line number Diff line number Diff line change @@ -30,10 +30,15 @@ parameters:
30
30
default : true
31
31
description : >
32
32
If true, this cache bucket will only apply to jobs within the same branch.
33
+ no_output_timeout :
34
+ type : string
35
+ default : " 10m"
36
+ description : Elapsed time the command can run without output.
33
37
34
38
steps :
35
39
- run :
36
40
name : << parameters.step-name >>
41
+ no_output_timeout : << parameters.no_output_timeout >>
37
42
environment :
38
43
PARAM_PROJECT_PATH : << parameters.project-path >>
39
44
PARAM_TEST_PLATFORM : << parameters.test-platform >>
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ parameters:
69
69
description : |
70
70
Whether to return the license used to build the project.
71
71
Unity only allows returning professional licenses.
72
+ no_output_timeout :
73
+ type : string
74
+ default : " 20m"
75
+ description : Elapsed time the command can run without output.
72
76
73
77
executor : << parameters.executor >>
74
78
@@ -80,13 +84,15 @@ steps:
80
84
unity-serial-var-name : << parameters.unity-serial-var-name >>
81
85
unity-license-var-name : << parameters.unity-license-var-name >>
82
86
project-path : <<parameters.project-path>>
87
+ no_output_timeout : << parameters.no_output_timeout>>
83
88
- build :
84
89
step-name : << parameters.step-name >>
85
90
build-name : <<parameters.build-name>>
86
91
build-target : <<parameters.build-target>>
87
92
project-path : <<parameters.project-path>>
88
93
store-artifacts : <<parameters.store-artifacts>>
89
94
compress : <<parameters.compress>>
95
+ no_output_timeout : << parameters.no_output_timeout>>
90
96
- when :
91
97
condition : <<parameters.return-license>>
92
98
steps :
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ parameters:
52
52
description : |
53
53
Whether to return the license used to test the project.
54
54
Unity only allows returning professional licenses.
55
+ no_output_timeout :
56
+ type : string
57
+ default : " 20m"
58
+ description : Elapsed time the command can run without output.
55
59
56
60
executor : << parameters.executor >>
57
61
@@ -63,10 +67,12 @@ steps:
63
67
unity-serial-var-name : << parameters.unity-serial-var-name >>
64
68
unity-license-var-name : << parameters.unity-license-var-name >>
65
69
project-path : <<parameters.project-path>>
70
+ no_output_timeout : << parameters.no_output_timeout>>
66
71
- test :
67
72
step-name : << parameters.step-name >>
68
73
test-platform : << parameters.test-platform >>
69
74
project-path : << parameters.project-path >>
75
+ no_output_timeout : << parameters.no_output_timeout>>
70
76
- when :
71
77
condition : <<parameters.return-license>>
72
78
steps :
You can’t perform that action at this time.
0 commit comments