-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update actions workflow to build BT5 examples, fix example builds.
- Loading branch information
Showing
3 changed files
with
155 additions
and
18 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 |
---|---|---|
|
@@ -12,9 +12,9 @@ jobs: | |
- "examples/NimBLE_Server" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Install platformio | ||
|
@@ -43,6 +43,48 @@ jobs: | |
cp ${{ matrix.example }}/* example/src/ | ||
platformio run -d example | ||
build_bt5_esp_pio: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
example: | ||
- "examples/Bluetooth_5/NimBLE_extended_client" | ||
- "examples/Bluetooth_5/NimBLE_extended_server" | ||
variant: | ||
- esp32c3 | ||
- esp32s3 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Install platformio | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install platformio | ||
- name: Build esp PIO | ||
run: | | ||
mkdir -p example/lib | ||
rsync -Rr . example/lib/ | ||
mkdir example/src | ||
cat > example/platformio.ini << EOF | ||
[env] | ||
platform = espressif32 | ||
framework = arduino | ||
[env:esp32c3] | ||
board = esp32-c3-devkitm-1 | ||
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1' | ||
[env:esp32s3] | ||
board = esp32-s3-devkitc-1 | ||
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1' | ||
EOF | ||
cp ${{ matrix.example }}/* example/src/ | ||
platformio run -d example | ||
build_arduino-esp32: | ||
strategy: | ||
fail-fast: false | ||
|
@@ -56,7 +98,7 @@ jobs: | |
- esp32s3 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Build arduino-esp32 | ||
uses: arduino/[email protected] | ||
with: | ||
|
@@ -68,6 +110,33 @@ jobs: | |
fqbn: "esp32:esp32:${{ matrix.variant }}" | ||
sketch-paths: ${{ matrix.example }} | ||
|
||
build_bt5_arduino-esp32: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
example: | ||
- "examples/Bluetooth_5/NimBLE_extended_client" | ||
- "examples/Bluetooth_5/NimBLE_extended_server" | ||
variant: | ||
- esp32c3 | ||
- esp32s3 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set config for BT5 | ||
run: | | ||
sed -i '0,/#include \"nimconfig_rename.h\"/a #define CONFIG_BT_NIMBLE_EXT_ADV 1' ./src/nimconfig.h | ||
- name: Build BT5 arduino-esp32 | ||
uses: arduino/[email protected] | ||
with: | ||
cli-version: latest | ||
platforms: | | ||
- name: "esp32:esp32" | ||
source-url: "https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json" | ||
version: latest | ||
fqbn: "esp32:esp32:${{ matrix.variant }}" | ||
sketch-paths: ${{ matrix.example }} | ||
|
||
build_n-able-Arduino: | ||
strategy: | ||
fail-fast: false | ||
|
@@ -82,7 +151,7 @@ jobs: | |
- Generic_nRF52840 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Build n-able Arduino | ||
uses: arduino/[email protected] | ||
with: | ||
|
@@ -94,6 +163,32 @@ jobs: | |
fqbn: "h2zero:arm-ble:${{ matrix.variant }}" | ||
sketch-paths: ${{ matrix.example }} | ||
|
||
build_bt5_n-able-Arduino: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
example: | ||
- "examples/Bluetooth_5/NimBLE_extended_client" | ||
- "examples/Bluetooth_5/NimBLE_extended_server" | ||
variant: | ||
- Generic_nRF52840 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set config for BT5 | ||
run: | | ||
echo "-DCONFIG_BT_NIMBLE_EXT_ADV=1" > ${{ matrix.example }}/build_opt.h | ||
- name: Build BT5 n-able Arduino | ||
uses: arduino/[email protected] | ||
with: | ||
cli-version: latest | ||
platforms: | | ||
- name: "h2zero:arm-ble" | ||
source-url: "https://h2zero.github.io/n-able-Arduino/package_n-able_boards_index.json" | ||
version: latest | ||
fqbn: "h2zero:arm-ble:${{ matrix.variant }}" | ||
sketch-paths: ${{ matrix.example }} | ||
|
||
build_n-able-pio: | ||
strategy: | ||
fail-fast: false | ||
|
@@ -103,9 +198,9 @@ jobs: | |
- "examples/NimBLE_Server" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Install platformio | ||
|
@@ -136,10 +231,46 @@ jobs: | |
EOF | ||
cp ${{ matrix.example }}/* example/src/ | ||
platformio run -d example | ||
build_bt5_n-able-pio: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
example: | ||
- "examples/Bluetooth_5/NimBLE_extended_client" | ||
- "examples/Bluetooth_5/NimBLE_extended_server" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Install platformio | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install platformio | ||
- name: Build esp PIO | ||
run: | | ||
mkdir -p example/lib | ||
rsync -Rr . example/lib/ | ||
mkdir example/src | ||
cat > example/platformio.ini << EOF | ||
[env] | ||
platform = https://github.com/h2zero/platform-n-able.git#1.0.0 | ||
framework = arduino | ||
[env:generic_nrf52840] | ||
board = generic_nrf52840 | ||
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1' | ||
EOF | ||
cp ${{ matrix.example }}/* example/src/ | ||
platformio run -d example | ||
build_docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Doxygen Action | ||
uses: mattnotmitt/[email protected] | ||
with: | ||
|
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