@@ -104,6 +104,8 @@ jobs:
104
104
build \
105
105
"
106
106
- name : Run Discover Commissionables Test
107
+ # Generally completes in seconds
108
+ timeout-minutes : 2
107
109
run : |
108
110
scripts/run_in_python_env.sh out/venv \
109
111
'./scripts/tests/run_java_test.py \
@@ -115,6 +117,8 @@ jobs:
115
117
--factoryreset \
116
118
'
117
119
- name : Run Pairing Onnetwork Test
120
+ # Generally completes in seconds
121
+ timeout-minutes : 2
118
122
run : |
119
123
scripts/run_in_python_env.sh out/venv \
120
124
'./scripts/tests/run_java_test.py \
@@ -126,6 +130,8 @@ jobs:
126
130
--factoryreset \
127
131
'
128
132
- name : Run IM Invoke Test
133
+ # Generally completes in seconds
134
+ timeout-minutes : 2
129
135
run : |
130
136
scripts/run_in_python_env.sh out/venv \
131
137
'./scripts/tests/run_java_test.py \
@@ -137,6 +143,8 @@ jobs:
137
143
--factoryreset \
138
144
'
139
145
- name : Run IM Extendable Invoke Test
146
+ # Generally completes in seconds
147
+ timeout-minutes : 2
140
148
run : |
141
149
scripts/run_in_python_env.sh out/venv \
142
150
'./scripts/tests/run_java_test.py \
@@ -148,6 +156,8 @@ jobs:
148
156
--factoryreset \
149
157
'
150
158
- name : Run IM Read Test
159
+ # Generally completes in seconds
160
+ timeout-minutes : 2
151
161
run : |
152
162
scripts/run_in_python_env.sh out/venv \
153
163
'./scripts/tests/run_java_test.py \
@@ -159,6 +169,8 @@ jobs:
159
169
--factoryreset \
160
170
'
161
171
- name : Run IM Write Test
172
+ # Generally completes in seconds
173
+ timeout-minutes : 2
162
174
run : |
163
175
scripts/run_in_python_env.sh out/venv \
164
176
'./scripts/tests/run_java_test.py \
@@ -170,6 +182,8 @@ jobs:
170
182
--factoryreset \
171
183
'
172
184
- name : Run IM Subscribe Test
185
+ # Generally completes in seconds
186
+ timeout-minutes : 2
173
187
run : |
174
188
scripts/run_in_python_env.sh out/venv \
175
189
'./scripts/tests/run_java_test.py \
@@ -181,6 +195,8 @@ jobs:
181
195
--factoryreset \
182
196
'
183
197
- name : Run Pairing AlreadyDiscovered Test
198
+ # Generally completes in seconds
199
+ timeout-minutes : 2
184
200
run : |
185
201
scripts/run_in_python_env.sh out/venv \
186
202
'./scripts/tests/run_java_test.py \
@@ -191,19 +207,22 @@ jobs:
191
207
--tool-args "already-discovered --nodeid 1 --setup-pin-code 20202021 --address ::1 --port 5540 -t 1000" \
192
208
--factoryreset \
193
209
'
194
- # Disabled due to failure: https://github.com/project-chip/connectedhomeip/issues/27361
195
- # - name: Run Pairing Address-PaseOnly Test
196
- # run: |
197
- # scripts/run_in_python_env.sh out/venv \
198
- # './scripts/tests/run_java_test.py \
199
- # --app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app \
200
- # --app-args "--discriminator 3840 --interface-id -1" \
201
- # --tool-path out/linux-x64-java-matter-controller \
202
- # --tool-cluster "pairing" \
203
- # --tool-args "address-paseonly --nodeid 1 --setup-pin-code 20202021 --address ::1 --port 5540 -t 1000" \
204
- # --factoryreset \
205
- # '
210
+ - name : Run Pairing Address-PaseOnly Test
211
+ # Disabled due to failure: https://github.com/project-chip/connectedhomeip/issues/27361
212
+ if : false
213
+ run : |
214
+ scripts/run_in_python_env.sh out/venv \
215
+ './scripts/tests/run_java_test.py \
216
+ --app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app \
217
+ --app-args "--discriminator 3840 --interface-id -1" \
218
+ --tool-path out/linux-x64-java-matter-controller \
219
+ --tool-cluster "pairing" \
220
+ --tool-args "address-paseonly --nodeid 1 --setup-pin-code 20202021 --address ::1 --port 5540 -t 1000" \
221
+ --factoryreset \
222
+ '
206
223
- name : Run Pairing SetupQRCode Test
224
+ # Generally completes in seconds
225
+ timeout-minutes : 2
207
226
run : |
208
227
scripts/run_in_python_env.sh out/venv \
209
228
'./scripts/tests/run_java_test.py \
@@ -215,6 +234,8 @@ jobs:
215
234
--factoryreset \
216
235
'
217
236
- name : Run Pairing ManualCode Test
237
+ # Generally completes in seconds
238
+ timeout-minutes : 2
218
239
run : |
219
240
scripts/run_in_python_env.sh out/venv \
220
241
'./scripts/tests/run_java_test.py \
@@ -226,6 +247,8 @@ jobs:
226
247
--factoryreset \
227
248
'
228
249
- name : Run Pairing ICD Onnetwork Test
250
+ # Generally completes in seconds
251
+ timeout-minutes : 2
229
252
run : |
230
253
scripts/run_in_python_env.sh out/venv \
231
254
'./scripts/tests/run_java_test.py \
@@ -236,7 +259,23 @@ jobs:
236
259
--tool-args "onnetwork-long --nodeid 1 --setup-pin-code 20202021 --discriminator 3840 -t 1000" \
237
260
--factoryreset \
238
261
'
262
+ - name : Run Pairing Onnetwork and get diagnostic log Test
263
+ # TODO: test below is disabled because it seems flaky (crashes on pool not being empty on app exit)
264
+ # See: https://github.com/project-chip/connectedhomeip/issues/36734
265
+ if : false
266
+ run : |
267
+ scripts/run_in_python_env.sh out/venv \
268
+ './scripts/tests/run_java_test.py \
269
+ --app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app \
270
+ --app-args "--discriminator 3840 --interface-id -1 --crash_log ./crashLog.log --end_user_support_log ./enduser.log --network_diagnostics_log ./network.log" \
271
+ --tool-path out/linux-x64-java-matter-controller \
272
+ --tool-cluster "bdx" \
273
+ --tool-args "onnetwork-long-downloadLog --nodeid 1 --setup-pin-code 20202021 --discriminator 3840 -t 3000 --logType CrashLogs --fileName ./crashLog.log" \
274
+ --factoryreset \
275
+ '
239
276
- name : Run Pairing Onnetwork Test
277
+ # Generally completes in seconds
278
+ timeout-minutes : 2
240
279
run : |
241
280
scripts/run_in_python_env.sh out/venv \
242
281
'./scripts/tests/run_kotlin_test.py \
@@ -248,6 +287,8 @@ jobs:
248
287
--factoryreset \
249
288
'
250
289
- name : Run Kotlin IM Invoke Test
290
+ # Generally completes in seconds
291
+ timeout-minutes : 2
251
292
run : |
252
293
scripts/run_in_python_env.sh out/venv \
253
294
'./scripts/tests/run_kotlin_test.py \
@@ -259,6 +300,8 @@ jobs:
259
300
--factoryreset \
260
301
'
261
302
- name : Run Kotlin IM Read Test
303
+ # Generally completes in seconds
304
+ timeout-minutes : 2
262
305
run : |
263
306
scripts/run_in_python_env.sh out/venv \
264
307
'./scripts/tests/run_kotlin_test.py \
@@ -270,6 +313,8 @@ jobs:
270
313
--factoryreset \
271
314
'
272
315
- name : Run Kotlin IM Write Test
316
+ # Generally completes in seconds
317
+ timeout-minutes : 2
273
318
run : |
274
319
scripts/run_in_python_env.sh out/venv \
275
320
'./scripts/tests/run_kotlin_test.py \
@@ -281,6 +326,8 @@ jobs:
281
326
--factoryreset \
282
327
'
283
328
- name : Run Kotlin IM Subscribe Test
329
+ # Generally completes in seconds
330
+ timeout-minutes : 2
284
331
run : |
285
332
scripts/run_in_python_env.sh out/venv \
286
333
'./scripts/tests/run_kotlin_test.py \
0 commit comments