forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…hip#1693) * Initial checkin * Adding size * Updating copyrights, and moving to labeller * Run every few minutes, doesn't work on PRs sadly * Fixing naming * Removing size, won't work on forks
- Loading branch information
1 parent
d5cbe86
commit c8541ef
Showing
9 changed files
with
300 additions
and
27 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
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 |
---|---|---|
@@ -0,0 +1,135 @@ | ||
# Copyright (c) 2020 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
############################################################ | ||
# Top Level Labels | ||
############################################################ | ||
repo: | ||
- ./* | ||
|
||
############################################################ | ||
# Examples | ||
############################################################ | ||
examples: | ||
- examples/* | ||
|
||
############################################################ | ||
# Documentation | ||
############################################################ | ||
documentation: | ||
- docs/* | ||
|
||
############################################################ | ||
# Tools + Development Items | ||
############################################################ | ||
scripts: | ||
- scripts/* | ||
|
||
integrations: | ||
- integrations/* | ||
|
||
vscode: | ||
- .vscode | ||
- .devcontainer | ||
|
||
gn: | ||
- gn/* | ||
|
||
github: | ||
- .github | ||
|
||
workflows: | ||
- .github/workflows/* | ||
|
||
tools: | ||
- tools/* | ||
|
||
############################################################ | ||
# Source Code | ||
############################################################ | ||
qr code: | ||
- src/qrcode/* | ||
|
||
lwip: | ||
- src/lwip/* | ||
|
||
inet: | ||
- src/inet/* | ||
|
||
config: | ||
- config/* | ||
|
||
lib: | ||
- src/lib/* | ||
|
||
crypto: | ||
- src/crypto/* | ||
|
||
controller: | ||
- src/controller/* | ||
|
||
ble: | ||
- src/ble/* | ||
|
||
android: | ||
- src/android/* | ||
|
||
app: | ||
- src/app/* | ||
|
||
transport: | ||
- src/transport/* | ||
|
||
system: | ||
- src/system/* | ||
|
||
setup payload: | ||
- src/setup_payload/* | ||
|
||
############################################################ | ||
# Platforms | ||
############################################################ | ||
platform: | ||
- src/platform/* | ||
|
||
darwin: | ||
- src/platform/Darwin/* | ||
- src/darwin/* | ||
|
||
efr32: | ||
- src/platform/EFR32/* | ||
|
||
esp32: | ||
- src/platform/ESP32/* | ||
|
||
freeRTOS: | ||
- src/platform/FreeRTOS/* | ||
|
||
k32w: | ||
- src/platform/K32W/* | ||
|
||
linux: | ||
- src/platform/Linux/* | ||
|
||
nrf5: | ||
- src/platform/nRF5/* | ||
|
||
nrf connect: | ||
- src/platform/nrfconnect/* | ||
|
||
openthread: | ||
- src/platform/openthread/* | ||
|
||
zephyr: | ||
- src/platform/Zephyr/* |
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 |
---|---|---|
@@ -1,3 +1,17 @@ | ||
# Copyright (c) 2020 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: GN Examples | ||
|
||
on: | ||
|
@@ -30,9 +44,13 @@ jobs: | |
- name: Bootstrap | ||
run: scripts/build/gn_bootstrap.sh | ||
- name: Build example nRF5 Lock App | ||
run: scripts/examples/gn_nrf_example.sh examples/lock-app/nrf5 out/lock_app_debug | ||
run: | ||
scripts/examples/gn_nrf_example.sh examples/lock-app/nrf5 | ||
out/lock_app_debug | ||
- name: Build example nRF5 Lighting App | ||
run: scripts/examples/gn_nrf_example.sh examples/lighting-app/nrf5 out/lighting_app_debug | ||
run: | ||
scripts/examples/gn_nrf_example.sh examples/lighting-app/nrf5 | ||
out/lighting_app_debug | ||
- name: Binary artifact suffix | ||
id: outsuffix | ||
uses: haya14busa/[email protected] | ||
|
@@ -43,10 +61,12 @@ jobs: | |
- name: Uploading Binaries | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ env.BUILD_TYPE }}-example-build-${{ steps.outsuffix.outputs.value }} | ||
name: | ||
${{ env.BUILD_TYPE }}-example-build-${{ | ||
steps.outsuffix.outputs.value }} | ||
path: | | ||
out/lock_app_debug/chip-nrf52840-lock-example | ||
out/lighting_app_debug/chip-nrf52840-lighting-example | ||
out/lock_app_debug/chip-nrf52840-lock-example | ||
out/lighting_app_debug/chip-nrf52840-lighting-example | ||
linux-standalone: | ||
name: Linux Standalone | ||
|
@@ -73,9 +93,13 @@ jobs: | |
- name: Bootstrap | ||
run: scripts/build/gn_bootstrap.sh | ||
- name: Build example Standalone Echo Client | ||
run: scripts/examples/gn_build_example.sh examples/chip-tool out/chip_tool_debug | ||
run: | ||
scripts/examples/gn_build_example.sh examples/chip-tool | ||
out/chip_tool_debug | ||
- name: Build example Standalone Shell | ||
run: scripts/examples/gn_build_example.sh examples/shell out/shell_debug | ||
run: | ||
scripts/examples/gn_build_example.sh examples/shell | ||
out/shell_debug | ||
- name: Binary artifact suffix | ||
id: outsuffix | ||
uses: haya14busa/[email protected] | ||
|
@@ -86,7 +110,9 @@ jobs: | |
- name: Uploading Binaries | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ env.BUILD_TYPE }}-example-build-${{ steps.outsuffix.outputs.value }} | ||
name: | ||
${{ env.BUILD_TYPE }}-example-build-${{ | ||
steps.outsuffix.outputs.value }} | ||
path: | | ||
out/chip_tool_debug/chip-standalone-demo | ||
out/shell_debug/chip-shell | ||
out/chip_tool_debug/chip-standalone-demo | ||
out/shell_debug/chip-shell |
Oops, something went wrong.