Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Download external libraries
run: pio pkg install --global --library https://github.com/arduino-libraries/Ethernet.git --library ESP32Async/AsyncTCP
run: pio pkg install --global --library https://github.com/arduino-libraries/Ethernet.git --library ESP32Async/AsyncTCP --library ESP32Async/ESPAsyncTCP
- name: Build PlatformIO examples
run: pio ci --lib="." --project-option="lib_ldf_mode=deep+" --board=lolin32
run: pio ci --lib="." --project-option="lib_ldf_mode=deep+" --project-option="lib_compat_mode=strict" --board=lolin32
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}

Expand Down Expand Up @@ -63,9 +63,9 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Download external libraries
run: pio pkg install --global --library https://github.com/arduino-libraries/Ethernet.git --library ESP32Async/AsyncTCP
run: pio pkg install --global --library https://github.com/arduino-libraries/Ethernet.git --library ESP32Async/AsyncTCP --library ESP32Async/ESPAsyncTCP
- name: Build PlatformIO examples
run: pio ci --lib="." --project-option="lib_ldf_mode=deep+" --board=lolin32
run: pio ci --lib="." --project-option="lib_ldf_mode=deep+" --project-option="lib_compat_mode=strict" --board=lolin32
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}

Expand Down
3 changes: 2 additions & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
],
"build":
{
"lib_ldf_Mode": "deep+"
"libLDFMode": "deep+",
"libCompatMode": "strict"
}
}