pin versions

This commit is contained in:
2025-08-14 20:43:31 +02:00
parent 3249c1d495
commit e328d999ad
3 changed files with 22 additions and 22 deletions

2
.gitignore vendored
View File

@@ -68,3 +68,5 @@ typings/
.pioenvs .pioenvs
.piolibdeps .piolibdeps
data/config.json data/config.json
.pio

View File

@@ -1,4 +1,4 @@
image: python:2.7-stretch image: python:3.12.10
stages: stages:
- build - build
@@ -8,7 +8,7 @@ before_script:
examples: examples:
stage: build stage: build
image: python:2.7-stretch image: python:3.12.10
script: script:
- pio run -t clean - pio run --target clean
- pio run -e basic - pio run

View File

@@ -1,46 +1,44 @@
[platformio] [platformio]
env_default = basic, chat default_envs = basic, chat
[common] [common]
framework = arduino framework = arduino
platform = espressif8266 platform = platformio/espressif8266@2.6.3
board = esp12e board = esp12e
upload_speed = 921600 upload_speed = 921600
monitor_baud = 115200 monitor_speed = 115200
lib_deps = lib_deps =
Hash arkhipenko/TaskScheduler@^3.8.5
TaskScheduler
SPIFFS
ArduinoJson@5.13.4 ArduinoJson@5.13.4
https://gitlab.com/wirelos/sprocket-lib.git#develop https://gitlab.com/wirelos/sprocket-lib.git#master
https://gitlab.com/wirelos/sprocket-network-wifi.git https://gitlab.com/wirelos/sprocket-network-wifi.git#master
[env:basic] [env:basic]
src_filter = +<*> -<examples/> +<examples/basic/> build_src_filter = +<*> -<examples/> +<examples/basic/>
platform = ${common.platform} platform = ${common.platform}
board = ${common.board} board = ${common.board}
upload_speed = ${common.upload_speed} upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_speed = ${common.monitor_speed}
framework = ${common.framework} framework = ${common.framework}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
PubSubClient knolleary/PubSubClient@^2.8
[env:chat] [env:chat]
src_filter = +<*> -<examples/> +<examples/chat/> build_src_filter = +<*> -<examples/> +<examples/chat/>
platform = ${common.platform} platform = ${common.platform}
board = ${common.board} board = ${common.board}
upload_speed = ${common.upload_speed} upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_speed = ${common.monitor_speed}
framework = ${common.framework} framework = ${common.framework}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
PubSubClient knolleary/PubSubClient@^2.8
[env:chat-esp01] [env:chat-esp01]
src_filter = +<*> -<examples/> +<examples/chat/> build_src_filter = +<*> -<examples/> +<examples/chat/>
platform = ${common.platform} platform = ${common.platform}
board = esp01 board = esp01
upload_speed = ${common.upload_speed} upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_speed = ${common.monitor_speed}
framework = ${common.framework} framework = ${common.framework}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
PubSubClient knolleary/PubSubClient@^2.8