Skip to content

Commit

Permalink
fix(6lowpan_ble): Added a simple CI build test
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cermak committed Jun 25, 2024
1 parent fd54c9a commit 2999835
Show file tree
Hide file tree
Showing 26 changed files with 82 additions and 4,056 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/netif_6lowpan_ble__build.yml
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 components/6lowpan_ble/examples/echo/client/main/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 2999835

Please sign in to comment.