diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-14 14:05:08 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-14 23:25:54 +0200 |
commit | b53b4e44241415c0a7ad857c72ec323109d2a7c0 (patch) | |
tree | a622e2242f482d8d62bbae5426631d36b80e39a3 /.travis.yml | |
parent | 5c2aac7162fe6ccce2d201eccdc3bd1fd2f0a092 (diff) | |
download | curl-b53b4e44241415c0a7ad857c72ec323109d2a7c0.tar.gz |
travis: build the examples too
to make sure they keep building warning-free
Closes #1777
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 64aecd890..ff586e6b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 - | |