File tree 2 files changed +3
-11
lines changed
ci/fireci/fireciplugins/macrobenchmark/run 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,6 @@ name: Health Metrics
2
2
3
3
on :
4
4
pull_request :
5
- types :
6
- - labeled
7
- - opened
8
- - reopened
9
- - synchronize
10
5
push :
11
6
branches :
12
7
- master
22
17
if : |
23
18
(github.event_name == 'push' && github.repository == 'firebase/firebase-android-sdk')
24
19
|| (github.event_name == 'pull_request'
25
- && github.event.action != 'labeled'
26
20
&& github.event.pull_request.head.repo.full_name == github.repository)
27
21
runs-on : ubuntu-latest
28
22
steps :
58
52
if : |
59
53
(github.event_name == 'push' && github.repository == 'firebase/firebase-android-sdk')
60
54
|| (github.event_name == 'pull_request'
61
- && github.event.action != 'labeled'
62
55
&& github.event.pull_request.head.repo.full_name == github.repository)
63
56
runs-on : ubuntu-latest
64
57
steps :
@@ -91,11 +84,10 @@ jobs:
91
84
92
85
startup_time :
93
86
name : Startup Time
94
- if : | # In case of pull requests, label "startup-time" is required to trigger
87
+ if : | # In case of pull requests, label "health-metrics: startup-time" is required
95
88
(github.event_name == 'push' && github.repository == 'firebase/firebase-android-sdk')
96
89
|| (github.event_name == 'pull_request'
97
- && github.event.action == 'labeled'
98
- && github.event.label.name == 'health-metrics: startup-time'
90
+ && contains(github.event.pull_request.labels.*.name, 'health-metrics: startup-time')
99
91
&& github.event.pull_request.head.repo.full_name == github.repository)
100
92
runs-on : ubuntu-latest
101
93
steps :
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ async def run(index: int, run_id: str) -> str:
88
88
args += ['--results-bucket' , 'fireescape-benchmark-results' ]
89
89
args += ['--results-dir' , run_id ]
90
90
args += ['--environment-variables' , ',' .join (ftl_environment_variables )]
91
- args += ['--timeout' , '30m ' ]
91
+ args += ['--timeout' , '45m ' ]
92
92
args += ['--project' , 'fireescape-c4819' ]
93
93
await execute_async (executable , * args , logger = run_logger )
94
94
return run_id
You can’t perform that action at this time.
0 commit comments