From e17c305ec3e4d4419c596a20be9adaea0981a22c Mon Sep 17 00:00:00 2001 From: Will Miles Date: Sun, 10 Mar 2024 11:21:20 -0400 Subject: [PATCH] Next test 2 --- .github/scripts/on-push.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/scripts/on-push.sh b/.github/scripts/on-push.sh index e22342490..34c6f29af 100755 --- a/.github/scripts/on-push.sh +++ b/.github/scripts/on-push.sh @@ -50,15 +50,12 @@ if [ "$BUILD_PIO" -eq 0 ]; then source ./.github/scripts/install-arduino-core-esp8266.sh echo "BUILDING ESP8266 EXAMPLES" fi - ${SCRIPTS_DIR}/sketch_utils.sh chunk_build -ai $ARDUINO_IDE_PATH -au $ARDUINO_USR_PATH -t "${TARGET_PLATFORM}" -fqbn "${FQBN}" -i "${CHUNK_INDEX}" -m "${CHUNKS_CNT}" + ./.github/scripts/sketch_utils.sh chunk_build -ai $ARDUINO_IDE_PATH -au $ARDUINO_USR_PATH -t "${TARGET_PLATFORM}" -fqbn "${FQBN}" -i "${CHUNK_INDEX}" -m "${CHUNKS_CNT}" else # PlatformIO Test source ./.github/scripts/install-platformio.sh - python -m platformio lib --storage-dir "$GITHUB_WORKSPACE" install - echo "Installing ArduinoJson ..." - python -m platformio pkg install https://github.com/bblanchon/ArduinoJson.git > /dev/null 2>&1 - python -m platformio pkg install https://github.com/me-no-dev/AsyncTCP.git > /dev/null 2>&1 + python -m platformio pkg install --storage-dir "$GITHUB_WORKSPACE" if [[ "$TARGET_PLATFORM" == "esp32" ]]; then BOARD="esp32dev" echo "BUILDING ESP32 EXAMPLES"