Skip to content

Commit d3d7de7

Browse files
committed
fix(6lowpan_ble): Moved examples to common folder, added CI
1 parent fd54c9a commit d3d7de7

25 files changed

+79
-4056
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "console_cmd_ifconfig: build-tests"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
types: [opened, synchronize, reopened, labeled]
9+
10+
jobs:
11+
build_console_cmd_ifconfig:
12+
if: contains(github.event.pull_request.labels.*.name, 'component::6lowpan_ble') || github.event_name == 'push'
13+
name: Build
14+
strategy:
15+
matrix:
16+
idf_ver: ["latest", "release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3"]
17+
18+
runs-on: ubuntu-22.04
19+
container: espressif/idf:${{ matrix.idf_ver }}
20+
steps:
21+
- name: Checkout esp-protocols
22+
uses: actions/checkout@v4
23+
- name: Build with IDF-${{ matrix.idf_ver }}
24+
env:
25+
EXPECTED_WARNING: ${{ matrix.warning }}
26+
shell: bash
27+
run: |
28+
. ${IDF_PATH}/export.sh
29+
pip install idf-component-manager idf-build-apps --upgrade
30+
python ci/build_apps.py components/netif_6lowpan_ble/examples/ -c

components/6lowpan_ble/examples/echo/client/main/CMakeLists.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)