Travis set Arduino to 1.8.13 and enabled warnings TRAVIS_FORCE_BUILD
This commit is contained in:
parent
cdbabdb30d
commit
9152c5d91d
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- ARDUINO_IDE_VERSION="1.8.9"
|
- ARDUINO_IDE_VERSION="1.8.13"
|
||||||
matrix:
|
matrix:
|
||||||
# see https://github.com/arduino/Arduino/blob/master/build/shared/manpage.adoc#options
|
# see https://github.com/arduino/Arduino/blob/master/build/shared/manpage.adoc#options
|
||||||
# and https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification#boardstxt
|
# and https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification#boardstxt
|
||||||
|
@ -146,7 +146,7 @@ script:
|
||||||
else
|
else
|
||||||
# build sketch
|
# build sketch
|
||||||
echo -e "\n\033[1;33mBuilding ${example##*/} ... \033[0m";
|
echo -e "\n\033[1;33mBuilding ${example##*/} ... \033[0m";
|
||||||
arduino --verify --board $BOARD $example;
|
arduino --verify --warnings=all --board $BOARD $example;
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n";
|
echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n";
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue