-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b6b8154
commit 825aa37
Showing
5 changed files
with
160 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,44 +1,122 @@ | ||
name: Arduino Library CI | ||
|
||
on: | ||
on: | ||
push: | ||
paths-ignore: | ||
- '**/**.md' | ||
- '/keywords.txt' | ||
- '/library.json' | ||
- '/library.properties' | ||
- '/vue-frontend' | ||
- '/docs' | ||
- "**/**.md" | ||
- "/keywords.txt" | ||
- "/library.json" | ||
- "/library.properties" | ||
- "/vue-frontend" | ||
- "/docs" | ||
pull_request: | ||
paths-ignore: | ||
- '**/**.md' | ||
- '/keywords.txt' | ||
- '/library.json' | ||
- '/library.properties' | ||
- '/vue-frontend' | ||
- '/docs' | ||
- "**/**.md" | ||
- "/keywords.txt" | ||
- "/library.json" | ||
- "/library.properties" | ||
- "/vue-frontend" | ||
- "/docs" | ||
|
||
jobs: | ||
build: | ||
arduino: | ||
name: arduino ${{ matrix.platform }} | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [esp8266, esp32] | ||
|
||
steps: | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.x' | ||
python-version: "3.x" | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
repository: ayushsharma82/ci-arduino | ||
path: ci | ||
repository: ayushsharma82/ci-arduino | ||
path: ci | ||
|
||
- name: pre-install | ||
run: bash ci/actions_install.sh | ||
|
||
- name: install-deps | ||
run: bash .github/scripts/dep-install.sh | ||
|
||
- name: test platforms | ||
run: python3 ci/build_platform.py esp8266 esp32 | ||
- name: Set configuration | ||
run: arduino-cli config set library.enable_unsafe_install true | ||
|
||
- name: Install AsyncTCP | ||
run: arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.1.2 | ||
|
||
- name: Install ESPAsyncWebServer | ||
run: arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v2.10.0 | ||
|
||
- name: Install ESPAsyncTCP | ||
run: arduino-cli lib install --git-url https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0 | ||
|
||
- name: Install ArduinoJson | ||
run: arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.0.4 | ||
|
||
- name: Build Examples | ||
run: python3 ci/build_platform.py ${{ matrix.platform }} | ||
|
||
platformio: | ||
name: pio ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: esp32dev|arduino | ||
board: esp32dev | ||
platform: espressif32 | ||
opts: | ||
- name: esp32dev|arduino-2 | ||
board: esp32dev | ||
platform: [email protected] | ||
opts: | ||
- name: esp32dev|arduino-3 | ||
board: esp32dev | ||
platform: espressif32 | ||
opts: "--project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.0-rc3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/esp32-arduino-libs.git#951ade74d7886e1ce931ea46614c4ac47ae3a6c0'" | ||
- name: esp32dev|arduino@master | ||
board: esp32dev | ||
platform: espressif32 | ||
opts: "--project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#master, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/esp32-arduino-libs.git#951ade74d7886e1ce931ea46614c4ac47ae3a6c0'" | ||
- name: esp32-s3-devkitc-1|arduino | ||
board: esp32-s3-devkitc-1 | ||
platform: espressif32 | ||
opts: | ||
- name: esp32-s3-devkitc-1|arduino-2 | ||
board: esp32-s3-devkitc-1 | ||
platform: [email protected] | ||
opts: | ||
- name: esp32-s3-devkitc-1|arduino-3 | ||
board: esp32-s3-devkitc-1 | ||
platform: espressif32 | ||
opts: "--project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.0-rc3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/esp32-arduino-libs.git#951ade74d7886e1ce931ea46614c4ac47ae3a6c0'" | ||
- name: huzzah|espressif8266 | ||
board: huzzah | ||
platform: espressif8266 | ||
opts: | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.platformio | ||
~/.cache/pip | ||
key: ${{ matrix.name }} | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- run: pip install platformio | ||
- run: platformio platform install ${{ matrix.platform }} | ||
|
||
- run: platformio ci "examples/AccessPoint/AccessPoint.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} | ||
- run: platformio ci "examples/Basic/Basic.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} | ||
- run: platformio ci "examples/Benchmark/Benchmark.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} | ||
- run: platformio ci "examples/Chart/Chart.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} | ||
- run: platformio ci "examples/Dynamic/Dynamic.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} | ||
- run: platformio ci "examples/Interactive/Interactive.ino" -l '.' -b ${{ matrix.board }} ${{ matrix.opts }} |
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 |
---|---|---|
|
@@ -37,4 +37,7 @@ node_modules | |
.vscode | ||
./vue-frontend/dist | ||
/build | ||
/portal | ||
/portal | ||
|
||
/.pio | ||
/logs |
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,45 @@ | ||
[env] | ||
framework = arduino | ||
build_flags = | ||
-Wall -Wextra | ||
-D CONFIG_ARDUHAL_LOG_COLORS | ||
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG | ||
lib_deps = | ||
bblanchon/ArduinoJson @ 7.0.4 | ||
mathieucarbou/Async TCP @ ^3.1.2 | ||
mathieucarbou/ESP Async WebServer @ 2.10.0 | ||
upload_protocol = esptool | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder, log2file | ||
|
||
[platformio] | ||
lib_dir = . | ||
; src_dir = examples/AccessPoint | ||
; src_dir = examples/Basic | ||
src_dir = examples/Benchmark | ||
; src_dir = examples/Chart | ||
; src_dir = examples/Dynamic | ||
; src_dir = examples/Interactive | ||
|
||
[env:arduino] | ||
platform = espressif32 | ||
board = esp32-s3-devkitc-1 | ||
|
||
[env:arduino-2] | ||
platform = [email protected] | ||
board = esp32-s3-devkitc-1 | ||
|
||
[env:arduino-3] | ||
platform = espressif32 | ||
platform_packages= | ||
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.0-rc3 | ||
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/esp32-arduino-libs.git#951ade74d7886e1ce931ea46614c4ac47ae3a6c0 | ||
board = esp32-s3-devkitc-1 | ||
|
||
[env:esp8266] | ||
platform = espressif8266 | ||
board = huzzah | ||
lib_deps = | ||
bblanchon/ArduinoJson @ 7.0.4 | ||
mathieucarbou/ESP Async WebServer @ 2.10.0 | ||
esphome/ESPAsyncTCP-esphome @ 2.0.0 |