You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AutoConnect/.travis.yml

37 lines
1.5 KiB

6 years ago
language: generic
6 years ago
env:
6 years ago
global:
- IDE_VERSION=1.8.6
6 years ago
matrix:
- BOARD="esp8266:esp8266:generic:xtal=80,eesz=4M3M,ip=lm2f,exception=disabled,FlashMode=qio,FlashFreq=80"
6 years ago
- BOARD="esp32:esp32:esp32:FlashFreq=80,FlashSize=4M"
6 years ago
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
- sleep 3
- export DISPLAY=:1.0
6 years ago
- wget http://downloads.arduino.cc/arduino-$IDE_VERSION-linux64.tar.xz
- tar xf arduino-$IDE_VERSION-linux64.tar.xz
- sudo mv arduino-$IDE_VERSION ~/arduino-ide
- export PATH=$PATH:~/arduino-ide
- arduino --pref "boardsmanager.additional.urls=http://arduino.esp8266.com/stable/package_esp8266com_index.json,http://dl.espressif.com/dl/package_esp32_index.json" --save-prefs
6 years ago
- if [[ "$BOARD" =~ "esp8266:esp8266:" ]]; then
arduino --install-boards esp8266:esp8266;
fi
6 years ago
- if [[ "$BOARD" =~ "esp32:esp32:" ]]; then
arduino --install-boards esp32:esp32;
6 years ago
fi
- arduino --install-library PubSubClient,ArduinoJson:5.13.4,PageBuilder:1.3.2
6 years ago
- buildExampleSketch() { arduino --verbose-build --verify --board $BOARD $PWD/examples/$1/$1.ino; }
install:
- mkdir -p ~/Arduino/libraries
- ln -s $PWD ~/Arduino/libraries/.
6 years ago
script:
6 years ago
- buildExampleSketch Credential
- buildExampleSketch FSBrowser
- buildExampleSketch HandleClient
6 years ago
- buildExampleSketch HandlePortal
- buildExampleSketch HandlePortalEX
6 years ago
- buildExampleSketch Simple
- buildExampleSketch mqttRSSI
- buildExampleSketch mqttRSSI_FS