-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
380 changed files
with
35,539 additions
and
93,679 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: connectedhomeip/chip-build:0.6.30 | ||
image: connectedhomeip/chip-build:0.6.31 | ||
|
||
steps: | ||
- uses: Wandalen/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build:0.6.30 | ||
image: connectedhomeip/chip-build:0.6.31 | ||
volumes: | ||
- "/tmp/log_output:/tmp/test_logs" | ||
options: --privileged --sysctl "net.ipv6.conf.all.disable_ipv6=0 | ||
|
@@ -138,7 +138,7 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build:0.6.30 | ||
image: connectedhomeip/chip-build:0.6.31 | ||
volumes: | ||
- "/tmp/log_output:/tmp/test_logs" | ||
options: --privileged --sysctl "net.ipv6.conf.all.disable_ipv6=0 | ||
|
@@ -251,6 +251,14 @@ jobs: | |
--pregen-dir ./zzz_pregenerated \ | ||
build \ | ||
" | ||
- name: Check no code generation in output | ||
run: | | ||
CNT=$(find -name "CHIPClusters.h" out | wc -l) | ||
if [ "${CNT}" != "0" ]; then | ||
echo "ERROR: found unexpected generated files:" | ||
find -name "CHIPClusters.h" out | ||
exit 1 | ||
fi | ||
- name: Undo code pre-generation changes (make compile time codegen work again) | ||
run: | | ||
rm -rf ./zzz_pregenerated | ||
|
@@ -290,7 +298,7 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build:0.6.30 | ||
image: connectedhomeip/chip-build:0.6.31 | ||
volumes: | ||
- "/tmp/log_output:/tmp/test_logs" | ||
options: --sysctl "net.ipv6.conf.all.disable_ipv6=0 | ||
|
@@ -344,6 +352,12 @@ jobs: | |
timeout-minutes: 200 | ||
runs-on: macos-latest | ||
if: github.actor != 'restyled-io[bot]' | ||
|
||
env: | ||
# NOTE: Generally kept in sync within the repo using | ||
# scripts/tools/zap/version_update.py | ||
ZAP_VERSION: v2023.01.09-nightly | ||
ZAP_INSTALL_PATH: /usr/local/zap/zap-v2023.01.09-nightly | ||
|
||
steps: | ||
- uses: Wandalen/[email protected] | ||
|
@@ -374,6 +388,16 @@ jobs: | |
ls -la /usr/local/Cellar/[email protected] | ||
OPEN_SSL_VERSION=`ls -la /usr/local/Cellar/[email protected] | cat | tail -n1 | awk '{print $NF}'` | ||
ln -s /usr/local/Cellar/[email protected]/$OPEN_SSL_VERSION/lib/pkgconfig/* . | ||
- name: Install zap | ||
run: | | ||
sudo mkdir -p $ZAP_INSTALL_PATH | ||
sudo chown `whoami` $ZAP_INSTALL_PATH | ||
curl -L https://github.com/project-chip/zap/releases/download/${ZAP_VERSION}/zap-mac.zip \ | ||
--output $ZAP_INSTALL_PATH/zap-mac.zip | ||
cd $ZAP_INSTALL_PATH | ||
unzip zap-mac.zip zap-cli | ||
rm zap-mac.zip | ||
./zap-cli --version | ||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
|
@@ -447,7 +471,7 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build:0.6.30 | ||
image: connectedhomeip/chip-build:0.6.31 | ||
volumes: | ||
- "/tmp/log_output:/tmp/test_logs" | ||
options: --privileged --sysctl "net.ipv6.conf.all.disable_ipv6=0 | ||
|
@@ -478,4 +502,4 @@ jobs: | |
- name: Run Build Coverage | ||
timeout-minutes: 20 | ||
run: ./scripts/build_coverage.sh | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,10 @@ jobs: | |
env: | ||
BUILD_VARIANT: ${{matrix.build_variant}} | ||
LSAN_OPTIONS: detect_leaks=1 malloc_context_size=40 suppressions=scripts/tests/chiptest/lsan-mac-suppressions.txt | ||
# NOTE: Generally kept in sync within the repo using | ||
# scripts/tools/zap/version_update.py | ||
ZAP_VERSION: v2023.01.09-nightly | ||
ZAP_INSTALL_PATH: /usr/local/zap/zap-v2023.01.09-nightly | ||
|
||
if: github.actor != 'restyled-io[bot]' | ||
runs-on: macos-latest | ||
|
@@ -72,6 +76,16 @@ jobs: | |
ls -la /usr/local/Cellar/[email protected] | ||
OPEN_SSL_VERSION=`ls -la /usr/local/Cellar/[email protected] | cat | tail -n1 | awk '{print $NF}'` | ||
ln -s /usr/local/Cellar/[email protected]/$OPEN_SSL_VERSION/lib/pkgconfig/* . | ||
- name: Install zap | ||
run: | | ||
sudo mkdir -p $ZAP_INSTALL_PATH | ||
sudo chown `whoami` $ZAP_INSTALL_PATH | ||
curl -L https://github.com/project-chip/zap/releases/download/${ZAP_VERSION}/zap-mac.zip \ | ||
--output $ZAP_INSTALL_PATH/zap-mac.zip | ||
cd $ZAP_INSTALL_PATH | ||
unzip zap-mac.zip zap-cli | ||
rm zap-mac.zip | ||
./zap-cli --version | ||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,12 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
runs-on: macos-latest | ||
|
||
env: | ||
# NOTE: Generally kept in sync within the repo using | ||
# scripts/tools/zap/version_update.py | ||
ZAP_VERSION: v2023.01.09-nightly | ||
ZAP_INSTALL_PATH: /usr/local/zap/zap-v2023.01.09-nightly | ||
|
||
steps: | ||
- uses: Wandalen/[email protected] | ||
name: Checkout | ||
|
@@ -52,6 +58,16 @@ jobs: | |
ls -la /usr/local/Cellar/[email protected] | ||
OPEN_SSL_VERSION=`ls -la /usr/local/Cellar/[email protected] | cat | tail -n1 | awk '{print $NF}'` | ||
ln -s /usr/local/Cellar/[email protected]/$OPEN_SSL_VERSION/lib/pkgconfig/* . | ||
- name: Install zap | ||
run: | | ||
sudo mkdir -p $ZAP_INSTALL_PATH | ||
sudo chown `whoami` $ZAP_INSTALL_PATH | ||
curl -L https://github.com/project-chip/zap/releases/download/${ZAP_VERSION}/zap-mac.zip \ | ||
--output $ZAP_INSTALL_PATH/zap-mac.zip | ||
cd $ZAP_INSTALL_PATH | ||
unzip zap-mac.zip zap-cli | ||
rm zap-mac.zip | ||
./zap-cli --version | ||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
if: github.actor != 'restyled-io[bot]' | ||
|
||
container: | ||
image: connectedhomeip/chip-build-imx:0.6.30 | ||
image: connectedhomeip/chip-build-imx:0.6.31 | ||
|
||
steps: | ||
- uses: Wandalen/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.