Try github CI (#3115)

This commit is contained in:
Me No Dev
2019-08-20 15:32:47 +03:00
committed by GitHub
parent fa55a2c91d
commit 65e256c40a
9 changed files with 644 additions and 118 deletions

9
tools/test-platformio.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
python -m platformio ci --board esp32dev libraries/WiFi/examples/WiFiClient && \
python -m platformio ci --board esp32dev libraries/WiFiClientSecure/examples/WiFiClientSecure && \
python -m platformio ci --board esp32dev libraries/BluetoothSerial/examples/SerialToSerialBT && \
python -m platformio ci --board esp32dev libraries/BLE/examples/BLE_server && \
python -m platformio ci --board esp32dev libraries/AzureIoT/examples/GetStarted && \
python -m platformio ci --board esp32dev libraries/ESP32/examples/Camera/CameraWebServer --project-option="board_build.partitions = huge_app.csv"
if [ $? -ne 0 ]; then exit 1; fi