51 lines
1.9 KiB
YAML
51 lines
1.9 KiB
YAML
sudo: false
|
|
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
|
|
os:
|
|
- linux
|
|
|
|
script:
|
|
- set -e
|
|
- wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
|
|
- tar xf arduino.tar.xz
|
|
- mv arduino-nightly $HOME/arduino_ide
|
|
- mkdir -p $HOME/Arduino/libraries
|
|
- cd $HOME/arduino_ide/hardware
|
|
- mkdir espressif
|
|
- cd espressif
|
|
- ln -s $TRAVIS_BUILD_DIR esp32
|
|
- cd esp32/tools
|
|
- python get.py
|
|
- export PATH="$HOME/arduino_ide:$TRAVIS_BUILD_DIR/tools/xtensa-esp32-elf/bin:$PATH"
|
|
- which arduino
|
|
- cd $TRAVIS_BUILD_DIR
|
|
- source tools/common.sh
|
|
- echo -e "travis_fold:end:sketch_test_env_prepare"
|
|
- echo -e "travis_fold:start:sketch_test"
|
|
- build_sketches $HOME/arduino_ide $TRAVIS_BUILD_DIR/libraries "-l $HOME/Arduino/libraries"
|
|
- echo -e "travis_fold:end:sketch_test"
|
|
- echo -e "travis_fold:start:size_report"
|
|
- cat size.log
|
|
- echo -e "travis_fold:end:size_report"
|
|
|
|
# test library examples with PlatformIO
|
|
- pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
|
- platformio platform install https://github.com/platformio/platform-espressif32.git#feature/stage
|
|
- sed -i 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' ~/.platformio/platforms/espressif32_stage/platform.json
|
|
- ln -s $TRAVIS_BUILD_DIR ~/.platformio/packages/framework-arduinoespressif32
|
|
- "python -c \"import glob,subprocess,sys; map(lambda p: (sys.stdout.write('Library example: %s\\n' % p), subprocess.call(['pio', 'ci', p, '--board', 'esp32dev'])), glob.glob('libraries/*/examples/*/'))\""
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/cb057279c430d91a47a8
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: false # default: false
|