travis: build the examples too

to make sure they keep building warning-free

Closes #1777
This commit is contained in:
Daniel Stenberg 2017-08-14 14:05:08 +02:00
parent 5c2aac7162
commit b53b4e4424
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 2 additions and 2 deletions

View File

@ -90,13 +90,13 @@ script:
- |
if [ "$T" = "debug" ]; then
./configure --enable-debug --enable-werror $C
make
make && make examples
make TFLAGS=-n test-nonflaky
fi
- |
if [ "$T" = "normal" ]; then
./configure --enable-warnings --enable-werror $C
make
make && make examples
make test-nonflaky
fi
- |