Skip to content

Commit e997be0

Browse files
Update main from master (#71)
Updates matter_sdk::main from csa::master
2 parents aed64e1 + 4224d70 commit e997be0

File tree

1,864 files changed

+157773
-192345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,864 files changed

+157773
-192345
lines changed

.devcontainer/Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ RUN apt-get update \
3737
valgrind \
3838
docker.io \
3939
iputils-ping \
40+
icecc \
4041
&& :
4142

4243
RUN groupadd -g $USER_GID $USERNAME \
@@ -80,3 +81,13 @@ ENV TIZEN_ROOTFS /tizen_rootfs
8081

8182
# Fast Model GDB plugins path for debugging support
8283
ENV FAST_MODEL_PLUGINS_PATH /opt/FastModelsPortfolio_11.16/plugins/Linux64_GCC-9.3
84+
85+
# Set up ccache as a pigweed command launcher when using the scripts/build/build_examples.py
86+
# script. Also, set up icecc as the command prefix for ccache. Such setup allows to benefit
87+
# from compilation caching and distributed compilation at the same time.
88+
#
89+
# NOTE: In order to use distributed compilation with icecc, one should run
90+
# "scripts/icecc.sh start" before starting the build.
91+
ENV CHIP_PW_COMMAND_LAUNCHER ccache
92+
ENV CCACHE_PREFIX icecc
93+
ENV PATH /usr/lib/ccache:$PATH

.github/.wordlist.txt

+6
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,7 @@ isUpperCase
735735
itemName
736736
iterable
737737
itsfoss
738+
IW
738739
JDK
739740
jinja
740741
JLink
@@ -893,6 +894,7 @@ microcontroller
893894
microcontrollers
894895
MicroSD
895896
middleware
897+
MIMXRT
896898
minApplicableSoftwareVersion
897899
Minicom
898900
MinInterval
@@ -924,6 +926,7 @@ Multicast
924926
multilib
925927
Multiprotocol
926928
multithreaded
929+
Murata
927930
mutex
928931
mutexes
929932
mv
@@ -1006,6 +1009,7 @@ OpenThreadDemo
10061009
openweave
10071010
OperationalCredentials
10081011
operationalDataset
1012+
operationalstate
10091013
opkg
10101014
OPTIGA
10111015
optionMask
@@ -1451,6 +1455,8 @@ trackFree
14511455
TransferSession
14521456
transitionTime
14531457
TransportMgrBase
1458+
triaged
1459+
triaging
14541460
TriggerEffect
14551461
TRNG
14561462
trustm

.github/issue-labeler.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@ darwin:
1212
# (?![a-z]) means "there is no next char in the range a-z".
1313
- "/(\\b[Ii][Oo][Ss](?![a-zA-Z])|[Hh][Oo][Mm][Ee][Pp][Oo][Dd]|[Dd][Aa][Rr][Ww][Ii][Nn]|\\bm[Aa][Cc]\\b|\\bMa[Cc]\\b|\\bM[Aa]c\\b|[Mm][Aa][Cc][Oo][Ss])/"
1414

15-
linux:
16-
- "/(linux)/i"
15+
16+
# NOTE:
17+
# Linux intentionally disabled: most people compile either on linux or darwin and
18+
# as a result a lot of issues get tagged as such even though they are not platform specific
19+
# (e.g. we get test case failures reported as linux even though they are just normal
20+
# test runs)
21+
#
22+
# Linux label should be reserved to platform-specific problems (usually bootstrap/packages
23+
# or integration with wifi/ethernet/bluetootn/etc.)
24+
#
25+
# linux:
26+
# - "/(linux)/i"
1727

1828
# Special Keywords for Cert Blockers
1929
air purifiers:

.github/labeler.yml

+25-3
Original file line numberDiff line numberDiff line change
@@ -275,38 +275,54 @@ darwin:
275275
silabs:
276276
- changed-files:
277277
- any-glob-to-any-file:
278+
- examples/platform/silabs/*
279+
- examples/platform/silabs/**/*
278280
- src/platform/silabs/*
279281
- src/platform/silabs/**/*
282+
- src/test_driver/efr32/*
283+
- src/test_driver/efr32/**/*
280284

281285
esp32:
282286
- changed-files:
283287
- any-glob-to-any-file:
288+
- examples/platform/esp32/*
289+
- examples/platform/esp32/**/*
284290
- src/platform/ESP32/*
285291
- src/platform/ESP32/**/*
292+
- src/test_driver/esp32/*
293+
- src/test_driver/esp32/**/*
286294

287295
freeRTOS:
288296
- changed-files:
289297
- any-glob-to-any-file:
290298
- src/platform/FreeRTOS/*
291299
- src/platform/FreeRTOS/**/*
292300

293-
k32w:
301+
nxp:
294302
- changed-files:
295303
- any-glob-to-any-file:
296-
- src/platform/K32W/*
297-
- src/platform/K32W/**/*
304+
- examples/platform/nxp/*
305+
- examples/platform/nxp/**/*
306+
- src/platform/nxp/*
307+
- src/platform/nxp/**/*
298308

299309
linux:
300310
- changed-files:
301311
- any-glob-to-any-file:
312+
- examples/platform/linux/*
313+
- examples/platform/linux/**/*
302314
- src/platform/Linux/*
303315
- src/platform/Linux/**/*
304316

305317
nrf connect:
306318
- changed-files:
307319
- any-glob-to-any-file:
320+
- examples/platform/nrfconnect/*
321+
- examples/platform/nrfconnect/**/*
308322
- src/platform/nrfconnect/*
309323
- src/platform/nrfconnect/**/*
324+
- src/test_driver/nrfconnect/*
325+
- src/test_driver/nrfconnect/**/*
310326

311327
openthread:
312328
- changed-files:
@@ -323,11 +339,17 @@ zephyr:
323339
telink:
324340
- changed-files:
325341
- any-glob-to-any-file:
342+
- examples/platform/telink/*
343+
- examples/platform/telink/**/*
326344
- src/platform/telink/*
327345
- src/platform/telink/**/*
328346

329347
tizen:
330348
- changed-files:
331349
- any-glob-to-any-file:
350+
- examples/platform/tizen/*
351+
- examples/platform/tizen/**/*
332352
- src/platform/Tizen/*
333353
- src/platform/Tizen/**/*
354+
- src/test_driver/tizen/*
355+
- src/test_driver/tizen/**/*

.github/workflows/build.yaml

+50-18
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ jobs:
157157
run: echo "$CONCURRENCY_CONTEXT"
158158
- name: Checkout
159159
uses: actions/checkout@v4
160+
with:
161+
fetch-depth: 2
162+
persist-credentials: true
160163
- name: Try to ensure the directories for core dumping exist and we
161164
can write them.
162165
run: |
@@ -186,6 +189,10 @@ jobs:
186189
- name: Clean output
187190
run: rm -rf ./out
188191
- name: Run Tests with sanitizers
192+
# Sanitizer tests are not likely to find extra issues so running the same tests
193+
# as above repeatedly on every pull request seems extra time. Instead keep this run
194+
# for master only
195+
if: github.event.pull_request.number == null
189196
env:
190197
LSAN_OPTIONS: detect_leaks=1
191198
run: |
@@ -201,17 +208,34 @@ jobs:
201208
BUILD_TYPE=sanitizers scripts/build/gn_gen.sh --args="$GN_ARGS chip_data_model_check_die_on_failure=true" --export-compile-commands
202209
BUILD_TYPE=sanitizers scripts/tests/gn_tests.sh
203210
done
211+
- name: Generate tests with sanitizers (for tidy)
212+
if: github.event.pull_request.number != null
213+
run: |
214+
rm -rf ./out/sanitizers
215+
BUILD_TYPE=sanitizers scripts/build/gn_gen.sh --args="is_clang=true is_asan=true chip_data_model_check_die_on_failure=true" --export-compile-commands
204216
- name: Ensure codegen is done for sanitize
205217
run: |
206218
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/sanitizers"
219+
- name: Find changed files
220+
id: changed-files
221+
uses: tj-actions/changed-files@v45
207222
- name: Clang-tidy validation
208223
# NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
209224
# See https://github.com/llvm/llvm-project/issues/97426
225+
env:
226+
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
210227
run: |
228+
touch out/changed_files.txt
229+
for file in ${ALL_CHANGED_FILES}; do
230+
echo "$file changed and will be considered for tidy"
231+
echo "$file" >>out/changed_files.txt
232+
done
233+
211234
./scripts/run_in_build_env.sh \
212235
"./scripts/run-clang-tidy-on-compile-commands.py \
213236
--compile-database out/sanitizers/compile_commands.json \
214237
--file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|-ReadImpl|-InvokeSubscribeImpl|CodegenDataModel_Write|QuieterReporting' \
238+
--file-list-file out/changed_files.txt \
215239
check \
216240
"
217241
- name: Clean output
@@ -375,13 +399,16 @@ jobs:
375399
scripts/build_python_device.sh --chip_detail_logging true
376400
377401
build_darwin:
378-
name: Build on Darwin (clang, python_lib, simulated)
402+
name: Build on Darwin (clang, simulated)
379403
runs-on: macos-13
380404
if: github.actor != 'restyled-io[bot]'
381405

382406
steps:
383407
- name: Checkout
384408
uses: actions/checkout@v4
409+
with:
410+
fetch-depth: 2
411+
persist-credentials: true
385412
- name: Checkout submodules & Bootstrap
386413
uses: ./.github/actions/checkout-submodules-and-bootstrap
387414
with:
@@ -402,37 +429,42 @@ jobs:
402429
CHIP_ROOT_PATH=examples/placeholder/linux
403430
CHIP_ROOT_PATH="$CHIP_ROOT_PATH" BUILD_TYPE="$BUILD_TYPE" scripts/build/gn_gen.sh --args="$GN_ARGS"
404431
scripts/run_in_build_env.sh "ninja -C ./out/$BUILD_TYPE"
405-
- name: Setup Build, Run Build and Run Tests
432+
- name: Setup Build, Run Build and Run Tests (asan + target_os=all)
406433
# We can't enable leak checking here in LSAN_OPTIONS, because on
407434
# Darwin that's only supported with a new enough clang, and we're
408435
# not building with the pigweed clang here.
436+
env:
437+
BUILD_TYPE: default
409438
run: |
410-
for BUILD_TYPE in default python_lib; do
411-
case $BUILD_TYPE in
412-
# We want to build various standalone example apps
413-
# (similar to what examples-linux-standalone.yaml
414-
# does), so use target_os="all" to get those picked
415-
# up as part of the "unified" build. But then to
416-
# save CI resources we want to exclude the
417-
# "host clang" build, which uses the pigweed
418-
# clang.
419-
"default") GN_ARGS='target_os="all" is_asan=true enable_host_clang_build=false';;
420-
esac
421-
BUILD_TYPE=$BUILD_TYPE scripts/build/gn_gen.sh --args="$GN_ARGS chip_data_model_check_die_on_failure=true" --export-compile-commands
422-
scripts/run_in_build_env.sh "ninja -C ./out/$BUILD_TYPE"
423-
BUILD_TYPE=$BUILD_TYPE scripts/tests/gn_tests.sh
424-
done
425-
- name: Ensure codegen is done for sanitize
439+
# We want to build various standalone example apps (similar to what examples-linux-standalone.yaml
440+
# does), so use target_os="all" to get those picked up as part of the "unified" build. But then
441+
# to save CI resources we want to exclude the "host clang" build, which uses the pigweed clang.
442+
scripts/build/gn_gen.sh --args='target_os="all" is_asan=true enable_host_clang_build=false chip_data_model_check_die_on_failure=true' --export-compile-commands
443+
scripts/run_in_build_env.sh "ninja -C ./out/$BUILD_TYPE"
444+
scripts/tests/gn_tests.sh
445+
- name: Ensure codegen is done for default
426446
run: |
427447
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/default"
448+
- name: Find changed files
449+
id: changed-files
450+
uses: tj-actions/changed-files@v45
428451
- name: Clang-tidy validation
429452
# NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
430453
# See https://github.com/llvm/llvm-project/issues/97426
454+
env:
455+
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
431456
run: |
457+
touch out/changed_files.txt
458+
for file in ${ALL_CHANGED_FILES}; do
459+
echo "$file changed and will be considered for tidy"
460+
echo "$file" >>out/changed_files.txt
461+
done
462+
432463
./scripts/run_in_build_env.sh \
433464
"./scripts/run-clang-tidy-on-compile-commands.py \
434465
--compile-database out/default/compile_commands.json \
435466
--file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|CodegenDataModel_Write|QuieterReporting' \
467+
--file-list-file out/changed_files.txt \
436468
check \
437469
"
438470
- name: Uploading diagnostic logs
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright (c) 2024 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Cancel workflows on failing CI
16+
on:
17+
workflow_dispatch:
18+
schedule:
19+
- cron: "*/10 * * * *"
20+
21+
jobs:
22+
cancel_workflow:
23+
name: Cancel CI on failing pull requests
24+
25+
runs-on: ubuntu-latest
26+
27+
# Don't run on forked repos
28+
if: github.repository_owner == 'project-chip'
29+
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v4
33+
- uses: actions/setup-python@v5
34+
with:
35+
python-version: '3.12'
36+
- name: Setup pip modules we use
37+
run: |
38+
pip install \
39+
click \
40+
coloredlogs \
41+
python-dateutil \
42+
pygithub \
43+
&& echo "DONE installint python prerequisites"
44+
- name: Cancel runs
45+
run: |
46+
scripts/tools/cancel_workflows_for_pr.py \
47+
--gh-api-token "${{ secrets.GITHUB_TOKEN }}" \
48+
--require "Restyled" \
49+
--require "Lint Code Base" \
50+
--require "ZAP" \
51+
--require "Run misspell" \
52+
--max-pr-age-minutes 20

.github/workflows/cert_test_checks.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ on:
1818
pull_request:
1919
paths:
2020
- "src/app/tests/suites/certification/**"
21+
permissions:
22+
contents: read
2123

2224
jobs:
2325
check-certification-tests:
@@ -30,6 +32,8 @@ jobs:
3032
steps:
3133
- name: Checkout
3234
uses: actions/checkout@v4
35+
with:
36+
fetch-depth: 0
3337
- name: Run checks
3438
run: |
3539
python3 scripts/tests/matter_yaml_linter.py

.github/workflows/darwin-tests.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ jobs:
7373
platform: darwin
7474
bootstrap-log-name: bootstrap-logs-darwin-${{ matrix.build_variant }}
7575

76+
- name: Build iOS Darwin Framework Tool Build Debug
77+
working-directory: src/darwin/Framework
78+
run: xcodebuild -target "darwin-framework-tool" -sdk iphoneos -configuration Debug AD_HOC_CODE_SIGNING_ALLOWED=YES
79+
7680
- name: Run macOS Darwin Framework Tool Build Debug
7781
working-directory: src/darwin/Framework
7882
run: xcodebuild -target "darwin-framework-tool" -sdk macosx -configuration Debug

0 commit comments

Comments
 (0)