Skip to content

Commit 0998031

Browse files
committed
Merge branch 'master' of https://github.com/project-chip/connectedhomeip into bump_CI_images
2 parents d886a13 + b88ac27 commit 0998031

File tree

524 files changed

+12375
-2509
lines changed

Some content is hidden

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

524 files changed

+12375
-2509
lines changed

.github/actions/bootstrap-cache/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
attempt_limit: 3
1212
attempt_delay: 2000
1313
with: |
14-
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }}
14+
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**', '/etc/lsb-release') }}
1515
path: |
1616
.environment
1717
build_overrides/pigweed_environment.gni

.github/workflows/bloat_check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535

3636
container:
37-
image: ghcr.io/project-chip/chip-build:64
37+
image: ghcr.io/project-chip/chip-build:65
3838

3939
steps:
4040
- name: Checkout

.github/workflows/build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
if: github.actor != 'restyled-io[bot]'
4343

4444
container:
45-
image: ghcr.io/project-chip/chip-build:64
45+
image: ghcr.io/project-chip/chip-build:65
4646
volumes:
4747
- "/:/runner-root-volume"
4848
- "/tmp/log_output:/tmp/test_logs"
@@ -449,7 +449,7 @@ jobs:
449449
if: github.actor != 'restyled-io[bot]'
450450

451451
container:
452-
image: ghcr.io/project-chip/chip-build:64
452+
image: ghcr.io/project-chip/chip-build:65
453453
volumes:
454454
- "/:/runner-root-volume"
455455
- "/tmp/log_output:/tmp/test_logs"

.github/workflows/chef.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: github.actor != 'restyled-io[bot]'
3636

3737
container:
38-
image: ghcr.io/project-chip/chip-build:64
38+
image: ghcr.io/project-chip/chip-build:65
3939
options: --user root
4040

4141
steps:

.github/workflows/examples-linux-standalone.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build:64
39+
image: ghcr.io/project-chip/chip-build:65
4040
volumes:
4141
- "/tmp/bloat_reports:/tmp/bloat_reports"
4242

.github/workflows/examples-linux-tv-casting-app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build:64
39+
image: ghcr.io/project-chip/chip-build:65
4040

4141
steps:
4242
- name: Checkout

.github/workflows/examples-mw320.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.actor != 'restyled-io[bot]'
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build:64
42+
image: ghcr.io/project-chip/chip-build:65
4343
volumes:
4444
- "/tmp/bloat_reports:/tmp/bloat_reports"
4545
steps:

.github/workflows/examples-nxp.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,30 @@ jobs:
9696
if: ${{ !env.ACT }}
9797
with:
9898
platform-name: K32W
99+
100+
zephyr:
101+
name: ZEPHYR_RW61X
102+
103+
runs-on: ubuntu-latest
104+
if: github.actor != 'restyled-io[bot]'
105+
106+
container:
107+
image: ghcr.io/project-chip/chip-build-nxp-zephyr:64
108+
109+
steps:
110+
- name: Checkout
111+
uses: actions/checkout@v4
112+
- name: Checkout submodules & Bootstrap
113+
uses: ./.github/actions/checkout-submodules-and-bootstrap
114+
with:
115+
platform: nxp
116+
117+
- name: Build RW61x Zephyr examples
118+
run: |
119+
scripts/run_in_build_env.sh "\
120+
./scripts/build/build_examples.py \
121+
--target nxp-rw61x-zephyr-all-clusters \
122+
--target nxp-rw61x-zephyr-thermostat \
123+
--target nxp-rw61x-zephyr-laundry-washer-factory \
124+
build \
125+
"

.github/workflows/examples-qpg.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.actor != 'restyled-io[bot]'
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build:64
42+
image: ghcr.io/project-chip/chip-build:65
4343
volumes:
4444
- "/tmp/bloat_reports:/tmp/bloat_reports"
4545
steps:

.github/workflows/examples-stm32.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: github.actor != 'restyled-io[bot]'
4141

4242
container:
43-
image: ghcr.io/project-chip/chip-build:64
43+
image: ghcr.io/project-chip/chip-build:65
4444
volumes:
4545
- "/tmp/bloat_reports:/tmp/bloat_reports"
4646
steps:

.github/workflows/fuzzing-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: github.actor != 'restyled-io[bot]'
3434

3535
container:
36-
image: ghcr.io/project-chip/chip-build:64
36+
image: ghcr.io/project-chip/chip-build:65
3737
volumes:
3838
- "/tmp/log_output:/tmp/test_logs"
3939

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: github.actor != 'restyled-io[bot]'
3636

3737
container:
38-
image: ghcr.io/project-chip/chip-build:64
38+
image: ghcr.io/project-chip/chip-build:65
3939

4040
steps:
4141
- name: Checkout

.github/workflows/tests.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ jobs:
444444
runs-on: ubuntu-latest
445445

446446
container:
447-
image: ghcr.io/project-chip/chip-build:64
447+
image: ghcr.io/project-chip/chip-build:65
448448
options: --privileged --sysctl "net.ipv6.conf.all.disable_ipv6=0
449449
net.ipv4.conf.all.forwarding=0 net.ipv6.conf.all.forwarding=0"
450450

@@ -581,6 +581,7 @@ jobs:
581581
scripts/run_in_python_env.sh out/venv './scripts/tests/TestTimeSyncTrustedTimeSourceRunner.py'
582582
scripts/run_in_python_env.sh out/venv './src/python_testing/test_testing/test_TC_ICDM_2_1.py'
583583
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/TestIdChecks.py'
584+
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/TestConformanceSupport.py'
584585
scripts/run_in_python_env.sh out/venv 'python3 ./src/python_testing/test_testing/test_IDM_10_4.py'
585586
586587
- name: Uploading core files

.github/workflows/unit_integration_test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build:64
42+
image: ghcr.io/project-chip/chip-build:65
4343
volumes:
4444
- "/:/runner-root-volume"
4545
- "/tmp/log_output:/tmp/test_logs"

.github/workflows/zap_regeneration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
runs-on: ubuntu-20.04
3232
container:
33-
image: ghcr.io/project-chip/chip-build:64
33+
image: ghcr.io/project-chip/chip-build:65
3434
defaults:
3535
run:
3636
shell: sh

.github/workflows/zap_templates.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
runs-on: ubuntu-20.04
3636
container:
37-
image: ghcr.io/project-chip/chip-build:64
37+
image: ghcr.io/project-chip/chip-build:65
3838
defaults:
3939
run:
4040
shell: sh

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@
133133
"random": "cpp",
134134
"thread": "cpp",
135135
"variant": "cpp",
136-
"any": "cpp"
136+
"any": "cpp",
137+
"future": "cpp"
137138
},
138139
// Configure paths or glob patterns to exclude from file watching.
139140
"files.watcherExclude": {

data_model/1.3/clusters/ACL-Cluster.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,19 +169,19 @@ Davis, CA 95616, USA
169169
</attribute>
170170
<attribute id="0x0002" name="SubjectsPerAccessControlEntry" type="uint16" default="4">
171171
<access read="true" readPrivilege="view"/>
172-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
172+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
173173
<mandatoryConform/>
174174
<constraint type="min" value="4"/>
175175
</attribute>
176176
<attribute id="0x0003" name="TargetsPerAccessControlEntry" type="uint16" default="3">
177177
<access read="true" readPrivilege="view"/>
178-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
178+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
179179
<mandatoryConform/>
180180
<constraint type="min" value="3"/>
181181
</attribute>
182182
<attribute id="0x0004" name="AccessControlEntriesPerFabric" type="uint16" default="4">
183183
<access read="true" readPrivilege="view"/>
184-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
184+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
185185
<mandatoryConform/>
186186
<constraint type="min" value="4"/>
187187
</attribute>

data_model/1.3/clusters/AdminCommissioningCluster.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ Davis, CA 95616, USA
9191
</attribute>
9292
<attribute id="0x0001" name="AdminFabricIndex" type="fabric-idx">
9393
<access read="true" readPrivilege="view"/>
94-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
94+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
9595
<mandatoryConform/>
9696
</attribute>
9797
<attribute id="0x0002" name="AdminVendorId" type="vendor-id">
9898
<access read="true" readPrivilege="view"/>
99-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
99+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
100100
<mandatoryConform/>
101101
</attribute>
102102
</attributes>

data_model/1.3/clusters/AlarmBase.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Davis, CA 95616, USA
8080
</attribute>
8181
<attribute id="0x0001" name="Latch" type="AlarmBitmap" default="0">
8282
<access read="true" readPrivilege="view"/>
83-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
83+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
8484
<mandatoryConform>
8585
<feature name="RESET"/>
8686
</mandatoryConform>
@@ -91,7 +91,7 @@ Davis, CA 95616, USA
9191
</attribute>
9292
<attribute id="0x0003" name="Supported" type="AlarmBitmap" default="0">
9393
<access read="true" readPrivilege="view"/>
94-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
94+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
9595
<mandatoryConform/>
9696
</attribute>
9797
</attributes>

data_model/1.3/clusters/ApplicationBasic.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -92,29 +92,29 @@ Davis, CA 95616, USA
9292
<attributes>
9393
<attribute id="0x0000" name="VendorName" type="string" default="empty">
9494
<access read="true" readPrivilege="view"/>
95-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
95+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
9696
<optionalConform/>
9797
<constraint type="maxLength" value="32"/>
9898
</attribute>
9999
<attribute id="0x0001" name="VendorID" type="vendor-id">
100100
<access read="true" readPrivilege="view"/>
101-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
101+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
102102
<optionalConform/>
103103
</attribute>
104104
<attribute id="0x0002" name="ApplicationName" type="string">
105105
<access read="true" readPrivilege="view"/>
106-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
106+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
107107
<mandatoryConform/>
108108
<constraint type="desc"/>
109109
</attribute>
110110
<attribute id="0x0003" name="ProductID" type="uint16">
111111
<access read="true" readPrivilege="view"/>
112-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
112+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
113113
<optionalConform/>
114114
</attribute>
115115
<attribute id="0x0004" name="Application" type="ApplicationStruct">
116116
<access read="true" readPrivilege="view"/>
117-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
117+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
118118
<mandatoryConform/>
119119
<constraint type="desc"/>
120120
</attribute>
@@ -125,14 +125,14 @@ Davis, CA 95616, USA
125125
</attribute>
126126
<attribute id="0x0006" name="ApplicationVersion" type="string">
127127
<access read="true" readPrivilege="view"/>
128-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
128+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
129129
<mandatoryConform/>
130130
<constraint type="maxLength" value="32"/>
131131
</attribute>
132132
<attribute id="0x0007" name="AllowedVendorList" type="list">
133133
<entry type="vendor-id"/>
134134
<access read="true" readPrivilege="admin"/>
135-
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false"/>
135+
<quality changeOmitted="false" nullable="false" scene="false" persistence="fixed" reportable="false" sourceAttribution="false" quieterReporting="false"/>
136136
<mandatoryConform/>
137137
</attribute>
138138
</attributes>

data_model/1.3/clusters/ApplicationLauncher.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ Davis, CA 95616, USA
103103
<attribute id="0x0000" name="CatalogList" type="list">
104104
<entry type="uint16"/>
105105
<access read="true" readPrivilege="view"/>
106-
<quality changeOmitted="false" nullable="false" scene="false" persistence="nonVolatile" reportable="false"/>
106+
<quality changeOmitted="false" nullable="false" scene="false" persistence="nonVolatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
107107
<mandatoryConform>
108108
<feature name="AP"/>
109109
</mandatoryConform>
110110
</attribute>
111111
<attribute id="0x0001" name="CurrentApp" type="ApplicationEPStruct" default="null">
112112
<access read="true" readPrivilege="view"/>
113-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
113+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
114114
<optionalConform/>
115115
<constraint type="desc"/>
116116
</attribute>

data_model/1.3/clusters/BallastConfiguration.xml

+8-6
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ Davis, CA 95616, USA
6565
<revision revision="4" summary="New data model format and notation"/>
6666
</revisionHistory>
6767
<clusterIds>
68-
<clusterId id="0x0301" name="Ballast Configuration"/>
68+
<clusterId id="0x0301" name="Ballast Configuration">
69+
<provisionalConform/>
70+
</clusterId>
6971
</clusterIds>
7072
<classification hierarchy="base" role="application" picsCode="BC" scope="Endpoint"/>
7173
<dataTypes>
@@ -116,12 +118,12 @@ Davis, CA 95616, USA
116118
</attribute>
117119
<attribute id="0x0014" name="IntrinsicBallastFactor" type="uint8">
118120
<access read="true" write="true" readPrivilege="view" writePrivilege="manage"/>
119-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
121+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
120122
<optionalConform/>
121123
</attribute>
122124
<attribute id="0x0015" name="BallastFactorAdjustment" type="uint8" default="null">
123125
<access read="true" write="true" readPrivilege="view" writePrivilege="manage"/>
124-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
126+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
125127
<optionalConform/>
126128
<constraint type="between" from="100" to="MS"/>
127129
</attribute>
@@ -141,12 +143,12 @@ Davis, CA 95616, USA
141143
</attribute>
142144
<attribute id="0x0032" name="LampRatedHours" type="uint24" default="null">
143145
<access read="true" write="true" readPrivilege="view" writePrivilege="manage"/>
144-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
146+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
145147
<optionalConform/>
146148
</attribute>
147149
<attribute id="0x0033" name="LampBurnHours" type="uint24" default="0">
148150
<access read="true" write="true" readPrivilege="view" writePrivilege="manage"/>
149-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
151+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
150152
<optionalConform/>
151153
</attribute>
152154
<attribute id="0x0034" name="LampAlarmMode" type="LampAlarmModeBitmap" default="0">
@@ -155,7 +157,7 @@ Davis, CA 95616, USA
155157
</attribute>
156158
<attribute id="0x0035" name="LampBurnHoursTripPoint" type="uint24" default="null">
157159
<access read="true" write="true" readPrivilege="view" writePrivilege="manage"/>
158-
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false"/>
160+
<quality changeOmitted="false" nullable="true" scene="false" persistence="volatile" reportable="false" sourceAttribution="false" quieterReporting="false"/>
159161
<optionalConform/>
160162
</attribute>
161163
</attributes>

0 commit comments

Comments
 (0)