-
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.
Merge pull request #1 from project-chip/master
Syncing fork to main repo
- Loading branch information
Showing
325 changed files
with
15,155 additions
and
5,476 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,27 +1,27 @@ | ||
main-build: | ||
docker: | ||
- image: connectedhomeip/chip-build:0.2.11 | ||
- image: connectedhomeip/chip-build-openssl:0.2.14 | ||
nrf-build: | ||
docker: | ||
- image: connectedhomeip/chip-build-nrf-platform:0.2.11 | ||
- image: connectedhomeip/chip-build-nrf-platform:0.2.14 | ||
esp32-build: | ||
docker: | ||
- image: connectedhomeip/chip-build-esp32:0.2.11 | ||
- image: connectedhomeip/chip-build-esp32:0.2.14 | ||
esp32-qemu-build: | ||
docker: | ||
- image: connectedhomeip/chip-build-esp32-qemu:0.2.11 | ||
- image: connectedhomeip/chip-build-esp32-qemu:0.2.14 | ||
linux-embedded: | ||
environment: | ||
BOOTSTRAP_ARGUMENTS: " --with-device-layer=linux" | ||
docker: | ||
- image: connectedhomeip/chip-build:0.2.11 | ||
- image: connectedhomeip/chip-build:0.2.14 | ||
mbedtls-build: | ||
environment: | ||
BOOTSTRAP_ARGUMENTS: " --with-crypto=mbedtls" | ||
docker: | ||
- image: connectedhomeip/chip-build:0.2.11 | ||
- image: connectedhomeip/chip-build:0.2.14 | ||
clang-build: | ||
environment: | ||
BOOTSTRAP_ARGUMENTS: " CC=clang-9 CXX=clang++-9" | ||
docker: | ||
- image: connectedhomeip/chip-build:0.2.11 | ||
- image: connectedhomeip/chip-build:0.2.14 |
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 |
---|---|---|
@@ -1,8 +1,20 @@ | ||
environment: | ||
BUILD_TYPE: esp32-build | ||
BUILD_TYPE: esp32-build | ||
executor: esp32-build | ||
steps: | ||
- checkout | ||
- run: | ||
name: Build example Echo App | ||
command: scripts/examples/esp_echo_app.sh | ||
- checkout | ||
- run: | ||
name: Build example Echo App | ||
command: scripts/examples/esp_echo_app.sh | ||
- run: | ||
name: Preserve artifacts | ||
command: | | ||
mkdir -p example_binaries/esp32-build | ||
cp examples/wifi-echo/server/esp32/build/chip-wifi-echo.elf \ | ||
example_binaries/esp32-build/chip-wifi-echo.elf | ||
- bloat-check: | ||
job_name: Build Examples [ESP32] | ||
baseline_download_dir: master_binaries/esp32-build | ||
build_output_dir: example_binaries/esp32-build | ||
- store_artifacts: | ||
path: example_binaries/esp32-build |
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 |
---|---|---|
@@ -1,8 +1,20 @@ | ||
environment: | ||
BUILD_TYPE: nrf-build | ||
BUILD_TYPE: nrf-build | ||
executor: nrf-build | ||
steps: | ||
- checkout | ||
- run: | ||
name: Build example nRF5 Lock App | ||
command: scripts/examples/nrf_lock_app.sh | ||
- checkout | ||
- run: | ||
name: Build example nRF5 Lock App | ||
command: scripts/examples/nrf_lock_app.sh | ||
- run: | ||
name: Preserve artifacts | ||
command: | | ||
mkdir -p example_binaries/nrf-build | ||
cp examples/lock-app/nrf5/build/chip-nrf52840-lock-example.out \ | ||
example_binaries/nrf-build/chip-nrf52840-lock-example.out | ||
- bloat-check: | ||
job_name: Build Examples [nRF] | ||
baseline_download_dir: master_binaries/nrf-build | ||
build_output_dir: example_binaries/nrf-build | ||
- store_artifacts: | ||
path: example_binaries/nrf-build |
Oops, something went wrong.