From 4695eb3b12e3978a14ebb43525d5b0cf75a6a001 Mon Sep 17 00:00:00 2001 From: Johny Mattsson Date: Thu, 9 Jun 2016 20:45:44 +1000 Subject: [PATCH] Update TravisCI build instructions... ...to deal with the subdirs under bin/ --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 568e6dc9..b3c0ffc9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,13 +14,13 @@ install: script: - export BUILD_DATE=$(date +%Y%m%d) - make EXTRA_CCFLAGS="-DBUILD_DATE='\"'$BUILD_DATE'\"'" all -- cd bin/ +- cd bin/esp8266 - file_name_float="nodemcu_float_${TRAVIS_TAG}.bin" - srec_cat -output ${file_name_float} -binary 0x00000.bin -binary -fill 0xff 0x00000 0x10000 0x10000.bin -binary -offset 0x10000 -- cd ../ +- cd ../.. - make clean - make EXTRA_CCFLAGS="-DLUA_NUMBER_INTEGRAL -DBUILD_DATE='\"'$BUILD_DATE'\"'" -- cd bin/ +- cd bin/esp8266 - file_name_integer="nodemcu_integer_${TRAVIS_TAG}.bin" - srec_cat -output ${file_name_integer} -binary 0x00000.bin -binary -fill 0xff 0x00000 0x10000 0x10000.bin -binary -offset 0x10000 # http://docs.travis-ci.com/user/environment-variables/#Convenience-Variables