From 9152c5d91d1c915bfb28ef8a2e45ac4fe678b21f Mon Sep 17 00:00:00 2001 From: jgromes Date: Mon, 6 Jul 2020 15:48:23 +0200 Subject: [PATCH] Travis set Arduino to 1.8.13 and enabled warnings TRAVIS_FORCE_BUILD --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c141bb73..1da28814 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ env: global: - - ARDUINO_IDE_VERSION="1.8.9" + - ARDUINO_IDE_VERSION="1.8.13" matrix: # 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 @@ -146,7 +146,7 @@ script: else # build sketch 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 echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n"; exit 1;