-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(6lowpan_ble): Added a simple CI build test
- Loading branch information
1 parent
fd54c9a
commit 2999835
Showing
26 changed files
with
82 additions
and
4,056 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "6lowpan_ble: build-tests" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, synchronize, reopened, labeled] | ||
|
||
jobs: | ||
build_6lowpan_ble: | ||
if: contains(github.event.pull_request.labels.*.name, 'component::6lowpan_ble') || github.event_name == 'push' | ||
name: Build | ||
strategy: | ||
matrix: | ||
idf_ver: ["latest", "release-v5.2", "release-v5.3"] | ||
|
||
runs-on: ubuntu-22.04 | ||
container: espressif/idf:${{ matrix.idf_ver }} | ||
steps: | ||
- name: Checkout esp-protocols | ||
uses: actions/checkout@v4 | ||
- name: Build with IDF-${{ matrix.idf_ver }} | ||
shell: bash | ||
run: | | ||
. ${IDF_PATH}/export.sh | ||
pip install idf-component-manager idf-build-apps --upgrade | ||
python ci/build_apps.py components/netif_6lowpan_ble/examples/ -m components/netif_6lowpan_ble/examples/.build-test-rules.yml -c |
10 changes: 0 additions & 10 deletions
10
components/6lowpan_ble/examples/echo/client/main/CMakeLists.txt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.