@@ -2,10 +2,13 @@ name: CHIP wheels build
2
2
3
3
on : push
4
4
5
+ env :
6
+ matter_sdk_ref : v1.1.0.1
7
+
5
8
jobs :
6
9
build_prepare :
7
10
name : Prepare build
8
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-22.04
9
12
outputs :
10
13
version : ${{ steps.python-version.outputs.value }}
11
14
channel : ${{ steps.version.outputs.channel }}
38
41
find : ' -'
39
42
replace : ' _'
40
43
replaceAll : true
44
+ - name : Checkout CHIP SDK repository
45
+ uses : actions/checkout@v3
46
+ with :
47
+ repository : project-chip/connectedhomeip
48
+ ref : ${{ env.matter_sdk_ref }}
49
+ path : ./project-chip
50
+ - name : Checkout submodules
51
+ working-directory : ./project-chip
52
+ run : scripts/checkout_submodules.py --shallow --platform linux
53
+ - name : Apply patches
54
+ working-directory : ./project-chip
55
+ run : |
56
+ for patch in ../*.patch
57
+ do
58
+ echo "Applying ${patch}"
59
+ patch -p1 < $patch
60
+ done
61
+ - name : Bootstrap
62
+ working-directory : ./project-chip
63
+ run : scripts/build/gn_bootstrap.sh
64
+ - name : ZAP Code pre-generation
65
+ working-directory : ./project-chip
66
+ run : scripts/run_in_build_env.sh "scripts/codepregen.py ./zzz_pregenerated/"
67
+ - name : Create Matter SDK tar
68
+ working-directory : ./project-chip
69
+ run : tar -caf ../project-chip.tar.zst --exclude .environment --use-compress-program=zstdmt .
70
+ - name : Store Matter SDK as artifact
71
+ uses : actions/upload-artifact@v3
72
+ with :
73
+ name : matter-sdk-${{ env.matter_sdk_ref }}
74
+ path : ./project-chip.tar.zst
41
75
42
76
build_linux_python_lib :
43
77
name : Build Python wheels for Linux (${{ matrix.arch.name }})
@@ -47,10 +81,10 @@ jobs:
47
81
matrix :
48
82
arch :
49
83
- name : x86_64
50
- container : connectedhomeip/chip-build:0.6.18
84
+ container : connectedhomeip/chip-build:0.7.0
51
85
runner : ubuntu-22.04
52
86
- name : aarch64
53
- container : agners/aarch64-chip-build:0.6.18
87
+ container : agners/aarch64-chip-build:0.7.0
54
88
runner : ARM64
55
89
56
90
runs-on : ${{ matrix.arch.runner }}
@@ -69,30 +103,18 @@ jobs:
69
103
net.ipv4.conf.all.forwarding=1 net.ipv6.conf.all.forwarding=1"
70
104
71
105
steps :
72
- - name : Dump GitHub context
73
- env :
74
- GITHUB_CONTEXT : ${{ toJSON(github) }}
75
- run : echo "$GITHUB_CONTEXT"
76
- working-directory : ./
77
- - name : Checkout build repository
78
- uses : actions/checkout@v3
79
- - name : Checkout CHIP SDK repository
80
- uses : actions/checkout@v3
106
+ - name : Restore Matter SDK from artifacts
107
+ uses : actions/download-artifact@v3
81
108
with :
82
- repository : project-chip/connectedhomeip
83
- ref : 4088a77f557e8571a39338fad51a1d8eb0131d79
84
- path : ./project-chip
85
- - name : Checkout submodules
86
- run : scripts/checkout_submodules.py --shallow --platform linux
87
- - name : Apply patches
109
+ name : matter-sdk-${{ env.matter_sdk_ref }}
110
+ - name : Extract Matter SDK from tar
88
111
run : |
89
- patch -p1 < ../0001-Support-custom-platform-tag.patch
90
- patch -p1 < ../0002-Revert-Python-dependencies.patch
91
- patch -p1 < ../0003-Use-data-as-platform-storage-location.patch
92
- patch -p1 < ../0004-Drop-pygobject-dependency.patch
93
- patch -p1 < ../0005-Fix-Objects.py-for-Python-3.11-compatibility.patch
94
- patch -p1 < ../0006-Add-lookup-dicts-for-clusters-and-attributes.patch
95
- patch -p1 < ../0007-Fix-schema-not-found-error-on-vendor-specific-data.patch
112
+ mkdir -p project-chip
113
+ cd project-chip
114
+ apt update && apt install zstd
115
+ tar -xaf ../project-chip.tar.zst --use-compress-program=zstdmt .
116
+ git config --global --add safe.directory "*"
117
+ working-directory : ./
96
118
- name : Bootstrap
97
119
run : scripts/build/gn_bootstrap.sh
98
120
- name : Setup Build, Run Build and Run Tests
@@ -106,6 +128,7 @@ jobs:
106
128
chip_python_version=\"${{ needs.build_prepare.outputs.version }}\" \
107
129
chip_python_package_prefix=\"home-assistant-chip\" \
108
130
chip_python_platform_tag=\"manylinux_2_31\" \
131
+ chip_code_pre_generated_directory=\"$(pwd)/zzz_pregenerated\" \
109
132
"
110
133
scripts/run_in_build_env.sh "ninja -C ./out chip-repl"
111
134
- name : Run Python library specific unit tests
0 commit comments