@@ -40,14 +40,13 @@ jobs:
4040 - name : Mark repo as safe
4141 shell : bash
4242 run : |
43- set -euxo pipefail
4443 git config --global --add safe.directory "$GITHUB_WORKSPACE"
4544
4645 - name : Initialize required submodules
4746 shell : bash
4847 run : |
4948 set -euxo pipefail
50- git submodule update --init --depth 1 third_party/matter_sdk
49+ git submodule update --init third_party/matter_sdk
5150
5251 - name : Checkout matter_sdk submodules
5352 shell : bash
@@ -62,34 +61,23 @@ jobs:
6261 - name : Build chip-tool
6362 shell : bash
6463 run : |
65- set -euxo pipefail
6664 cd "$GITHUB_WORKSPACE/third_party/matter_sdk"
67- set +u
68- source ./scripts/activate.sh
69- set -u
7065 python3 -m pip install --upgrade pip
7166 python3 -m pip install --upgrade click
7267 ./scripts/build/build_examples.py --target linux-arm64-chip-tool-ipv6only-clang build
7368
7469 - name : Build OTA provider
7570 shell : bash
7671 run : |
77- set -euxo pipefail
7872 cd "$GITHUB_WORKSPACE/third_party/matter_sdk"
79- export PW_ENVIRONMENT_ROOT="${PW_ENVIRONMENT_ROOT:-$PWD/.environment}"
80- source ./scripts/activate.sh
8173 python3 -m pip install --upgrade pip
8274 python3 -m pip install --upgrade click
8375 ./scripts/build/build_examples.py --target linux-arm64-ota-provider-ipv6only-clang build
8476
8577 - name : Build all-clusters app
8678 shell : bash
8779 run : |
88- set -euxo pipefail
8980 cd "$GITHUB_WORKSPACE/third_party/matter_sdk"
90- set +u
91- source ./scripts/activate.sh
92- set -u
9381 python3 -m pip install --upgrade pip
9482 python3 -m pip install --upgrade click
9583 ./scripts/build/build_examples.py --target linux-arm64-all-clusters-clang build
0 commit comments