File tree 30 files changed +162
-74
lines changed
contact-sensor-app/telink
pump-controller-app/telink
temperature-measurement-app/telink
30 files changed +162
-74
lines changed Original file line number Diff line number Diff line change 29
29
if : github.actor != 'restyled-io[bot]'
30
30
31
31
container :
32
- image : ghcr.io/project-chip/chip-build:0.8
32
+ image : ghcr.io/project-chip/chip-build:1
33
33
34
34
steps :
35
35
- name : Checkout
Original file line number Diff line number Diff line change 8
8
- name : Checkout
9
9
uses : actions/checkout@v3
10
10
- name : Roll docker versions
11
- run : ./scripts/helpers/roll_docker_version.sh ./integrations/docker/images/base/chip-build/version
11
+ run : ./scripts/helpers/roll_docker_version.sh --reason="Automated roll by GitHub Action"
12
12
- uses : EndBug/add-and-commit@v9
13
13
with :
14
14
default_author : github_actions
Original file line number Diff line number Diff line change @@ -81,11 +81,11 @@ exclude:
81
81
- " src/controller/java/generated/java/**/*" # not formatted: generated files
82
82
- " src/controller/java/zap-generated/**/*" # not formatted: generated files
83
83
- " scripts/setup/bootstrap.sh" # tries to quote loop variable
84
-
84
+ - " integrations/docker/build-all.sh " # tries to quote loop variable
85
85
86
86
changed_paths :
87
- maximum : 100000
88
- outcome : error
87
+ maximum : 100000
88
+ outcome : error
89
89
90
90
# Restylers to run, and how
91
91
restylers :
@@ -220,21 +220,21 @@ restylers:
220
220
- " **/*.sh"
221
221
- " **/*.bash"
222
222
- name : autopep8
223
- image : ' restyled/restyler-autopep8:v2.0.0'
223
+ image : restyled/restyler-autopep8:v2.0.0
224
224
command :
225
- - autopep8
226
- - ' --in-place'
225
+ - autopep8
226
+ - " --in-place"
227
227
arguments : []
228
228
include :
229
- - ' **/*.py'
229
+ - " **/*.py"
230
230
interpreters :
231
- - python
231
+ - python
232
232
- name : isort
233
- image : ' restyled/restyler-isort:v5.11.2'
233
+ image : restyled/restyler-isort:v5.11.2
234
234
command :
235
- - isort
235
+ - isort
236
236
arguments : []
237
237
include :
238
- - ' **/*.py'
238
+ - " **/*.py"
239
239
interpreters :
240
- - python
240
+ - python
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ The CHIP demo application is supported on
27
27
28
28
- Pull docker image:
29
29
30
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
30
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
31
31
32
32
- Run docker container:
33
33
34
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
34
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
35
35
36
36
- Setup build environment:
37
37
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ creating your own application.
11
11
1 . Pull docker image from repository:
12
12
13
13
``` bash
14
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
14
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
15
15
```
16
16
17
17
1. Run docker container:
18
18
19
19
` ` ` bash
20
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
20
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
21
21
` ` `
22
22
23
23
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ The CHIP demo application is supported on
27
27
- Pull docker image:
28
28
29
29
```
30
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
30
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
31
31
```
32
32
33
33
- Run docker container:
34
34
35
35
```
36
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
36
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
37
37
```
38
38
39
39
- Setup build environment:
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ for creating your own application.
11
11
1 . Pull docker image from repository:
12
12
13
13
``` bash
14
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
14
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
15
15
```
16
16
17
17
1. Run docker container:
18
18
19
19
` ` ` bash
20
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
20
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
21
21
` ` `
22
22
23
23
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -88,13 +88,13 @@ defined:
88
88
1 . Pull docker image from repository:
89
89
90
90
``` bash
91
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
91
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
92
92
```
93
93
94
94
1. Run docker container:
95
95
96
96
` ` ` bash
97
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
97
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
98
98
` ` `
99
99
100
100
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ relevant platform image. You can simulate the workflow locally by mounting your
101
101
CHIP repo into a container and executing the CI command:
102
102
103
103
``` shell
104
- docker run -it --mount source=$( pwd) ,target=/workspace,type=bind ghcr.io/project-chip/chip-build-$PLATFORM :$VERSION
104
+ docker run -it --mount source=$( pwd) ,target=/workspace,type=bind ghcr.io/project-chip/chip-build-$PLATFORM :1 $VERSION
105
105
```
106
106
107
107
In the container:
@@ -128,7 +128,7 @@ chef_$PLATFORM:
128
128
if : github.actor != 'restyled-io[bot]'
129
129
130
130
container :
131
- image : ghcr.io/project-chip/chip-build-$PLATFORM:$VERSION
131
+ image : ghcr.io/project-chip/chip-build-$PLATFORM:1 $VERSION
132
132
options : --user root
133
133
134
134
steps :
@@ -183,7 +183,7 @@ command for these targets.
183
183
To test your configuration locally, you may employ a similar strategy as in CI :
184
184
185
185
` ` ` shell
186
- docker run -it --mount source=$(pwd),target=/workspace,type=bind ghcr.io/project-chip/chip-build-vscode:$VERSION
186
+ docker run -it --mount source=$(pwd),target=/workspace,type=bind ghcr.io/project-chip/chip-build-vscode:1 $VERSION
187
187
` ` `
188
188
189
189
In the container :
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ You can use this example as a reference for creating your own application.
9
9
1 . Pull docker image from repository:
10
10
11
11
``` bash
12
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
12
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
13
13
```
14
14
15
15
1. Run docker container:
16
16
17
17
` ` ` bash
18
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
18
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
19
19
` ` `
20
20
21
21
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ The CHIP demo application is supported on
26
26
27
27
- Pull docker image:
28
28
29
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
29
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
30
30
31
31
- Run docker container:
32
32
33
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
33
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
34
34
35
35
- Setup build environment:
36
36
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ creating your own application.
14
14
1 . Pull docker image from repository:
15
15
16
16
``` bash
17
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
17
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
18
18
```
19
19
20
20
1. Run docker container:
21
21
22
22
` ` ` bash
23
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
23
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
24
24
` ` `
25
25
26
26
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ The CHIP demo application is supported on
23
23
24
24
- Pull docker image:
25
25
26
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
26
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
27
27
28
28
- Run docker container:
29
29
30
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
30
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
31
31
32
32
- Setup build environment:
33
33
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ---
2
+ orphan : true
3
+ ---
4
+
5
+ # Matter QPG6105 SDK
6
+
7
+ ## Qorvo SDK
8
+
9
+ More detailed information on the Qorvo SDK can be found in the
10
+ [ Qorvo Matter SDK] ( https://github.com/Qorvo/QMatter ) .
11
+
12
+ ## More information
13
+
14
+ For more information on our product line and support options, please visit
15
+ [ www.qorvo.com ] ( https://www.qorvo.com ) or contact us at <LPW.support@qorvo.com >
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ a reference for creating your own application.
12
12
1 . Pull docker image from repository:
13
13
14
14
``` bash
15
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
15
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
16
16
```
17
17
18
18
1. Run docker container:
19
19
20
20
` ` ` bash
21
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
21
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
22
22
` ` `
23
23
24
24
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ---
2
+ orphan : true
3
+ ---
4
+
5
+ # Matter QPG6105 SDK
6
+
7
+ ## Qorvo SDK
8
+
9
+ More detailed information on the Qorvo SDK can be found in the
10
+ [ Qorvo Matter SDK] ( https://github.com/Qorvo/QMatter ) .
11
+
12
+ ## More information
13
+
14
+ For more information on our product line and support options, please visit
15
+ [ www.qorvo.com ] ( https://www.qorvo.com ) or contact us at <LPW.support@qorvo.com >
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ a reference for creating your own application.
12
12
1 . Pull docker image from repository:
13
13
14
14
``` bash
15
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
15
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
16
16
```
17
17
18
18
1. Run docker container:
19
19
20
20
` ` ` bash
21
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
21
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
22
22
` ` `
23
23
24
24
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ A prototype application that demonstrates OTA Requestor capabilities.
6
6
7
7
- Pull docker image:
8
8
9
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
9
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
10
10
11
11
- Run docker container:
12
12
13
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
13
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
14
14
15
15
- Setup build environment:
16
16
Original file line number Diff line number Diff line change 5
5
1 . Pull docker image from repository:
6
6
7
7
``` bash
8
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
8
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
9
9
```
10
10
11
11
1. Run docker container:
12
12
13
13
` ` ` bash
14
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
14
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
15
15
` ` `
16
16
17
17
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ---
2
+ orphan : true
3
+ ---
4
+
5
+ # Matter QPG6105 SDK
6
+
7
+ ## Qorvo SDK
8
+
9
+ More detailed information on the Qorvo SDK can be found in the
10
+ [ Qorvo Matter SDK] ( https://github.com/Qorvo/QMatter ) .
11
+
12
+ ## More information
13
+
14
+ For more information on our product line and support options, please visit
15
+ [ www.qorvo.com ] ( https://www.qorvo.com ) or contact us at <LPW.support@qorvo.com >
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ following features are available:
31
31
32
32
- Pull docker image:
33
33
34
- $ docker pull ghcr.io/project-chip/chip-build-ameba:latest
34
+ $ docker pull ghcr.io/project-chip/chip-build-ameba:1
35
35
36
36
- Run docker container:
37
37
38
- $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:latest
38
+ $ docker run -it -v ${CHIP_DIR}:/root/chip ghcr.io/project-chip/chip-build-ameba:1
39
39
40
40
- Setup build environment:
41
41
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ reference for creating your own pump application.
13
13
1 . Pull docker image from repository:
14
14
15
15
``` bash
16
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
16
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
17
17
```
18
18
19
19
1. Run docker container:
20
20
21
21
` ` ` bash
22
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
22
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
23
23
` ` `
24
24
25
25
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ your own pump application.
14
14
1 . Pull docker image from repository:
15
15
16
16
``` bash
17
- $ docker pull ghcr.io/project-chip/chip-build-telink:latest
17
+ $ docker pull ghcr.io/project-chip/chip-build-telink:1
18
18
```
19
19
20
20
1. Run docker container:
21
21
22
22
` ` ` bash
23
- $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:latest
23
+ $ docker run -it --rm -v ${CHIP_BASE} :/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule " c 189:* rmw" ghcr.io/project-chip/chip-build-telink:1
24
24
` ` `
25
25
26
26
here ` ${CHIP_BASE} ` is directory which contains CHIP repo files ** !!! Pay
You can’t perform that action at this time.
0 commit comments