From 9097a6e45e1e0387a3104bf9ffad7c0c2a3b2eb0 Mon Sep 17 00:00:00 2001 From: Luc Date: Wed, 7 Apr 2021 18:03:12 +0200 Subject: [PATCH] remove the verbose compilation --- .travis.yml | 1 + command.sh | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2b16ea8..f7ce6bcd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,6 +67,7 @@ script: after_success: - chmod +x success.sh - ./success.sh + after_failure: - chmod +x fail.sh - ./fail.sh diff --git a/command.sh b/command.sh index 2b22a43b..cd79cba4 100644 --- a/command.sh +++ b/command.sh @@ -57,10 +57,9 @@ function build_sketch() sed -i "s/#define FILESYSTEM_FEATURE ESP_LITTLEFS_FILESYSTEM/#define FILESYSTEM_FEATURE ESP_FAT_FILESYSTEM/g" $TRAVIS_BUILD_DIR/esp3d/configuration.h fi echo "Display configuration" - cat $TRAVIS_BUILD_DIR/esp3d/configuration.h # build sketch with arduino ide echo -e "\n Build $sketch \n" - arduino --verbose --verify $sketch + arduino $sketch # get build result from arduino local re=$?