@@ -23,7 +23,11 @@ concurrency:
23
23
group : ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
24
24
cancel-in-progress : true
25
25
26
+ env :
27
+ CHIP_NO_LOG_TIMESTAMPS : true
28
+
26
29
jobs :
30
+
27
31
build_linux_gcc_debug :
28
32
name : Build on Linux (gcc_debug)
29
33
timeout-minutes : 85
@@ -125,6 +129,7 @@ jobs:
125
129
# path: out/
126
130
# # objdirs are big; don't hold on to them too long.
127
131
# retention-days: 5
132
+
128
133
build_linux :
129
134
name : Build on Linux (fake, gcc_release, clang, simulated)
130
135
timeout-minutes : 150
@@ -219,7 +224,6 @@ jobs:
219
224
run : |
220
225
./scripts/run_in_build_env.sh \
221
226
"./scripts/run-clang-tidy-on-compile-commands.py \
222
- --no-log-timestamps \
223
227
--compile-database out/sanitizers/compile_commands.json \
224
228
--file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/' \
225
229
check \
@@ -228,7 +232,7 @@ jobs:
228
232
timeout-minutes : 60
229
233
run : |
230
234
./scripts/run_in_build_env.sh \
231
- "./scripts/build/build_examples.py --no-log-timestamps \
235
+ "./scripts/build/build_examples.py \
232
236
--target linux-x64-minmdns-ipv6only-clang \
233
237
--target linux-x64-rpc-console \
234
238
build \
@@ -241,7 +245,7 @@ jobs:
241
245
timeout-minutes : 60
242
246
run : |
243
247
./scripts/run_in_build_env.sh \
244
- "./scripts/build/build_examples.py --no-log-timestamps \
248
+ "./scripts/build/build_examples.py \
245
249
--target linux-x64-all-clusters-ipv6only-clang \
246
250
--target linux-x64-chip-tool-ipv6only-clang \
247
251
--pregen-dir ./zzz_pregenerated \
@@ -255,7 +259,7 @@ jobs:
255
259
timeout-minutes : 15
256
260
run : |
257
261
./scripts/run_in_build_env.sh \
258
- "./scripts/build/build_examples.py --no-log-timestamps -- target linux-fake-tests build"
262
+ "./scripts/build/build_examples.py --target linux-fake-tests build"
259
263
- name : Uploading core files
260
264
uses : actions/upload-artifact@v3
261
265
if : ${{ failure() && !env.ACT }}
@@ -295,6 +299,7 @@ jobs:
295
299
# - name: Perform CodeQL Analysis
296
300
# if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }}
297
301
# uses: github/codeql-action/analyze@v1
302
+
298
303
build_linux_python_lib :
299
304
name : Build on Linux (python_lib)
300
305
timeout-minutes : 60
@@ -430,7 +435,6 @@ jobs:
430
435
run : |
431
436
./scripts/run_in_build_env.sh \
432
437
"./scripts/run-clang-tidy-on-compile-commands.py \
433
- --no-log-timestamps \
434
438
--compile-database out/default/compile_commands.json \
435
439
check \
436
440
"
0 commit comments