Skip to content

Commit 910160f

Browse files
committed
fix: potential fix for ci
1 parent 48d3ea9 commit 910160f

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
index_url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
5050

5151
- name: CI Pico 2W | RP2350+W
52-
core: rp2040:rp2350
53-
board: rp2040:rp2350:rpipico2w
52+
core: rp2040:rp2040
53+
board: rp2040:rp2040:rpipico2w
5454
index_url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
5555
steps:
5656
- name: Checkout

platformio.ini

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build_flags =
55
-D CONFIG_ARDUHAL_LOG_COLORS
66
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
77
lib_deps =
8-
bblanchon/ArduinoJson@7.1.0
8+
bblanchon/ArduinoJson@^7.3.0
99
ESP32Async/ESPAsyncWebServer@^3.7.0
1010
upload_protocol = esptool
1111
monitor_speed = 115200
@@ -22,13 +22,15 @@ platform = https://github.com/pioarduino/platform-espressif32/releases/download/
2222
board = esp32-s3-devkitc-1
2323
lib_deps =
2424
ESP32Async/AsyncTCP@^3.3.5
25+
${env.lib_deps}
2526

2627
[env:esp8266]
2728
platform = espressif8266
2829
board = huzzah
2930
lib_deps =
3031
vshymanskyy/Preferences@^2.1.0
3132
ESP32Async/ESPAsyncTCP@^2.0.0
33+
${env.lib_deps}
3234

3335
[env:pico]
3436
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -38,6 +40,7 @@ board_build.core = earlephilhower
3840
lib_deps =
3941
vshymanskyy/Preferences@^2.1.0
4042
khoih-prog/AsyncTCP_RP2040W@^1.2.0
43+
${env.lib_deps}
4144

4245
[env:pico2]
4346
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -47,6 +50,7 @@ board_build.core = earlephilhower
4750
lib_deps =
4851
vshymanskyy/Preferences@^2.1.0
4952
khoih-prog/AsyncTCP_RP2040W@^1.2.0
53+
${env.lib_deps}
5054

5155

5256
; ------------
@@ -58,13 +62,14 @@ platform = https://github.com/pioarduino/platform-espressif32/releases/download/
5862
board = ${sysenv.PIO_BOARD}
5963
lib_deps =
6064
ESP32Async/AsyncTCP@^3.3.5
65+
${env.lib_deps}
6166

6267
[env:ci-esp8266]
6368
platform = espressif8266
6469
board = ${sysenv.PIO_BOARD}
6570
lib_deps =
6671
ESP32Async/ESPAsyncTCP@^2.0.0
67-
ESP32Async/ESPAsyncWebServer@^3.7.0
72+
${env.lib_deps}
6873

6974
[env:ci-rp2040]
7075
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -74,6 +79,7 @@ board_build.core = earlephilhower
7479
lib_deps =
7580
vshymanskyy/Preferences@^2.1.0
7681
khoih-prog/AsyncTCP_RP2040W@^1.2.0
82+
${env.lib_deps}
7783

7884
[env:ci-rp2350]
7985
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -82,4 +88,5 @@ framework = arduino
8288
board_build.core = earlephilhower
8389
lib_deps =
8490
vshymanskyy/Preferences@^2.1.0
85-
khoih-prog/AsyncTCP_RP2040W@^1.2.0
91+
khoih-prog/AsyncTCP_RP2040W@^1.2.0
92+
${env.lib_deps}

0 commit comments

Comments
 (0)