Add basic .travis.yml
This commit is contained in:
parent
20e9cece41
commit
fbf42d5472
|
@ -0,0 +1,22 @@
|
|||
language: cpp
|
||||
before_install:
|
||||
- sudo apt-get install -y python-serial srecord
|
||||
install:
|
||||
- wget https://github.com/GeorgeHahn/nodemcu-firmware/blob/travis/tools/esp-open-sdk.tar.gz -O tools/esp-open-sdk.tar.gz
|
||||
- tar -zxvf tools/esp-open-sdk.tar.gz
|
||||
- export PATH=$PATH:$PWD/esp-open-sdk/sdk:$PWD/esp-open-sdk/xtensa-lx106-elf/bin
|
||||
script:
|
||||
- make all
|
||||
- cd bin/
|
||||
- file_name="nodemcu-firmware_v${TRAVIS_TAG}.${TRAVIS_BUILD_NUMBER}.bin"
|
||||
- srec_cat -output ${file_name} -binary 0x00000.bin -binary -fill 0xff 0x00000 0x10000 0x10000.bin -binary -offset 0x10000
|
||||
#deploy:
|
||||
# provider: releases
|
||||
# api_key: "${GITHUB_OAUTH}"
|
||||
# file: "$TRAVIS_BUILD_DIR/bin/${file_name}"
|
||||
# skip_cleanup: true
|
||||
# on:
|
||||
# tags: true
|
||||
#env:
|
||||
# global:
|
||||
# - secure: OVFK1zFj8VFVITWIGR2UlinVoTFNjlcQZeFt4xpn+B0wLz1mAWnR//F49qLkAcZt2ca8ogbQwEyDenFfkcSKOkUpvivyDatkHEt4WAhdXeg2y3zdHjX7NntscQBpTUmwjhV/0OA0qV9sNLK5r1t45oDh2NVcpfEQTJP5oYKfe6I=
|
Loading…
Reference in New Issue