Travis: Work around 4MB log limit when building all examples

This commit is contained in:
Angus Gratton 2016-05-04 07:34:54 +10:00
parent fee987d5cf
commit 57c718d835
4 changed files with 57 additions and 20 deletions

View file

@ -0,0 +1,15 @@
#!/bin/bash
set -uv
# Called by Travis to install esptool2 to generate OTA-compatible build
# images
if test -f ${ESPTOOL2_DIR}/esptool2; then
echo "Using cached esptool2"
exit 0
fi
git clone https://github.com/raburton/esptool2 ${ESPTOOL2_DIR}
cd ${ESPTOOL2_DIR}
git reset --hard ${ESPTOOL2_COMMIT}
make