File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,12 @@ addons:
13
13
script :
14
14
- set -e
15
15
- export CXX="g++-4.8" CC="gcc-4.8" GCOV="gcov-4.8"
16
+ - echo -e "travis_fold:start:host_tests"
16
17
- pushd $TRAVIS_BUILD_DIR/tests/host
17
18
- make
18
19
- make clean-objects
20
+ - echo -e "travis_fold:end:host_tests"
21
+ - echo -e "travis_fold:start:sketch_test_env_prepare"
19
22
- popd
20
23
- wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
21
24
- tar xf arduino.tar.xz
@@ -31,7 +34,13 @@ script:
31
34
- cd $TRAVIS_BUILD_DIR
32
35
- source tests/common.sh
33
36
- install_libraries
37
+ - echo -e "travis_fold:end:sketch_test_env_prepare"
38
+ - echo -e "travis_fold:start:sketch_test"
34
39
- build_sketches $HOME/arduino_ide $TRAVIS_BUILD_DIR "-l $HOME/Arduino/libraries"
40
+ - echo -e "travis_fold:end:sketch_test"
41
+ - echo -e "travis_fold:start:size_report"
42
+ - cat size.log
43
+ - echo -e "travis_fold:end:size_report"
35
44
36
45
after_success :
37
46
- pushd $TRAVIS_BUILD_DIR/tests/host
Original file line number Diff line number Diff line change @@ -72,9 +72,6 @@ function build_sketches()
72
72
print_size_info $build_dir /* .elf >> size.log
73
73
done
74
74
set -e
75
- echo -e " \n ------------ Size report ------------ \n"
76
- cat size.log
77
- echo -e " \n ------------------------------------- \n"
78
75
}
79
76
80
77
function install_libraries()
You can’t perform that action at this time.
0 commit comments