Skip to content

Commit 88204fc

Browse files
[nrf mergeup] Matter upmerge to 1.3.0.0 version
Regular upmerge of Matter fork to v.1.3.0.0 Signed-off-by: Kamil Kasperczyk <kamil.kasperczyk@nordicsemi.no>
2 parents ef574cd + 07e3098 commit 88204fc

File tree

5,620 files changed

+1011240
-605250
lines changed

Some content is hidden

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

5,620 files changed

+1011240
-605250
lines changed

.actrc

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This file contains settings for local github action runner act:
2+
# https://github.com/nektos/act
3+
#
4+
# It is recommended to run specific jobs that you need, all jobs except those
5+
# running on should darwin work.
6+
# e.g. act -j build_linux
7+
#
8+
# It is recommended to set up a separate bridge network
9+
# and possibly define it in ~/.actrc like so:
10+
# --network=bridge
11+
# https://docs.docker.com/network/drivers/bridge/
12+
13+
# Remove containers after finishing a job, comment out for debugging
14+
--rm
15+
16+
# Reuse the checkout from host, otherwise act will do docker cp that makes
17+
# running jobs a lot longer even on SSD. Clean up your .environment before
18+
# running it.
19+
--bind
20+
21+
# Easier to have 1:1 match between triggering jobs and reading logs when they
22+
# use the same name
23+
--log-prefix-job-id
24+
25+
# Default runner image does not include enough.
26+
# https://github.com/nektos/act#default-runners-are-intentionally-incomplete
27+
-P ubuntu-latest=catthehacker/ubuntu:full-latest

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Checks: >
3535
-clang-analyzer-cplusplus.Move,
3636
-clang-analyzer-deadcode.DeadStores,
3737
-clang-analyzer-nullability.NullablePassedToNonnull,
38+
-clang-analyzer-optin.core.EnumCastOutOfRange,
3839
-clang-analyzer-optin.cplusplus.UninitializedObject,
3940
-clang-analyzer-optin.cplusplus.VirtualCall,
4041
-clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker,

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"mounts": [
1515
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
1616
],
17-
"initializeCommand": ".devcontainer/build.sh --tag matter-dev-environment:local --version 22",
17+
"initializeCommand": "bash .devcontainer/build.sh --tag matter-dev-environment:local --version 22",
1818
"image": "matter-dev-environment:local",
1919
"remoteUser": "vscode",
2020
"customizations": {

.flake8

-6
This file was deleted.

0 commit comments

Comments
 (0)