From 3952ec8a5eb2c6952904a456d9112ca5615e0875 Mon Sep 17 00:00:00 2001 From: Will Miles Date: Sun, 10 Mar 2024 13:33:23 -0400 Subject: [PATCH] CI test 7 --- .github/scripts/on-push.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/scripts/on-push.sh b/.github/scripts/on-push.sh index 6fbadc59c..1e1d85d4e 100755 --- a/.github/scripts/on-push.sh +++ b/.github/scripts/on-push.sh @@ -55,11 +55,10 @@ else # PlatformIO Test source ./.github/scripts/install-platformio.sh - python -m platformio pkg install --storage-dir "$GITHUB_WORKSPACE" echo "Installing ArduinoJson ..." - python -m platformio pkg install --library https://github.com/bblanchon/ArduinoJson.git + python -m platformio pkg install --library -g https://github.com/bblanchon/ArduinoJson.git echo "Installing ESPAsyncTCP ..." - python -m platformio pkg install --library https://github.com/me-no-dev/AsyncTCP.git + python -m platformio pkg install --library -g https://github.com/me-no-dev/AsyncTCP.git if [[ "$TARGET_PLATFORM" == "esp32" ]]; then BOARD="esp32dev" echo "BUILDING ESP32 EXAMPLES" @@ -67,5 +66,5 @@ else BOARD="esp12e" echo "BUILDING ESP8266 EXAMPLES" fi - build_pio_sketches "$BOARD" "" "$GITHUB_WORKSPACE/examples" + build_pio_sketches "$BOARD" "lib_deps=." "$GITHUB_WORKSPACE/examples" fi