Skip to content

Commit

Permalink
CI test 7
Browse files Browse the repository at this point in the history
  • Loading branch information
willmmiles committed Mar 10, 2024
1 parent 94fcbcb commit 3952ec8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/scripts/on-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,16 @@ 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"
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

0 comments on commit 3952ec8

Please sign in to comment.