From 0ffc8249977fadd76edb89089072c2f591f57b8e Mon Sep 17 00:00:00 2001 From: Tobias Maier Date: Sat, 15 Feb 2025 15:15:27 +0100 Subject: [PATCH] test2 --- .gitea/workflows/on_push.yaml | 6 ++++-- platformio.ini | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/on_push.yaml b/.gitea/workflows/on_push.yaml index 3634556..a7dbafa 100644 --- a/.gitea/workflows/on_push.yaml +++ b/.gitea/workflows/on_push.yaml @@ -16,6 +16,8 @@ jobs: - name: Checkout Code uses: actions/checkout@v2 - name: Run PlatformIO build for INA233 - run: pio ci -c platformio.ini ./ -e ESP32_INA233 --lib ./lib/INA233/ --lib ./lib/fetchOTA/ + run: pio run -e ESP32_INA233 - name: Run PlatformIO - run: pio ci -c platformio.ini ./ -e ESP32_INA226 --lib ./lib/fetchOTA/ + run: pio run -e ESP32_INA226 + - name: look at the output + run: ls -lah .pio/build/ESP32_INA233/ .pio/build/ESP32_INA226/ diff --git a/platformio.ini b/platformio.ini index d5da0aa..1a43a4a 100644 --- a/platformio.ini +++ b/platformio.ini @@ -19,11 +19,12 @@ monitor_speed = 115200 lib_deps = ottowinter/ESPAsyncWebServer-esphome@^3.3.0 bblanchon/ArduinoJson@^6.21.3 - ArduinoLog + jsc/ArduinoLog + fetchOTA + INA322 board_build.partitions = default.csv upload_protocol = espota upload_port = 192.168.5.181 -lib_extra_dirs = libs build_flags = -Wall -Wextra [env:ESP32_INA226] @@ -35,11 +36,10 @@ lib_deps = ottowinter/ESPAsyncWebServer-esphome@^3.3.0 robtillaart/INA226@^0.4.4 bblanchon/ArduinoJson@^6.21.3 - ArduinoLog + jsc/ArduinoLog board_build.partitions = default.csv upload_protocol = espota upload_port = 192.168.5.181 -lib_extra_dirs = libs build_flags = -Wall -Wextra -DUSE_INA226 [env:native]