Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4c60ad

Browse files
committedMay 16, 2019
Building multi value example only for WiFi enabled boards and reduce build output - otherwise the log overflows and travis cancels the build
1 parent 0e55571 commit f4c60ad

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,19 @@ before_install:
5757
- arduino --install-library RTCZero
5858
- arduino --install-library WiFi101
5959
- arduino --install-library WiFiNINA
60-
- buildExampleSketch() { arduino --verbose-build --verify --board $BOARD $PWD/examples/$1/$1.ino; }
61-
- buildExampleUtilitySketch() { arduino --verbose-build --verify --board $BOARD $PWD/examples/utility/$1/$1.ino; }
60+
- buildExampleSketch() { arduino --verify --board $BOARD $PWD/examples/$1/$1.ino; }
61+
- buildExampleUtilitySketch() { arduino --verify --board $BOARD $PWD/examples/utility/$1/$1.ino; }
6262
install:
6363
- mkdir -p $HOME/Arduino/libraries
6464
- ln -s $PWD $HOME/Arduino/libraries/.
6565
script:
6666
- buildExampleSketch ArduinoIoTCloud_LED_switch
6767
- buildExampleSketch ArduinoIoTCloud_Travis_CI
68-
- buildExampleSketch MultiValue_example
6968
- |
7069
if [ "$BOARD" == "arduino:samd:mkr1000" ] || [ "$BOARD" == "arduino:samd:mkrwifi1010" ];
71-
then buildExampleSketch WiFi_Cloud_Blink;
70+
then
71+
buildExampleSketch WiFi_Cloud_Blink;
72+
buildExampleSketch MultiValue_example;
7273
fi
7374
- |
7475
if [ "$BOARD" == "arduino:samd:mkrgsm1400" ];

0 commit comments

Comments
 (0)
Please sign in to comment.