summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-08-10 13:27:17 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-08-10 13:27:17 +0200
commitdf681c39fad83cc1bb542ee73e970ab6b6c4ab42 (patch)
tree2fafa942ce3044b754107fae254de8ee01ea4251
parent050e3532f42e3307b82c8630d6f7d211a1897352 (diff)
downloadcurl-df681c39fad83cc1bb542ee73e970ab6b6c4ab42.tar.gz
travis: test cmake build on tarball too
Could've prevented #1755
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 19f974e61..9dbde59b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -123,6 +123,9 @@ script:
rm -rf curl-99.98.97
# verify out-of-tree build
(tar xf curl-99.98.97.tar.gz && mkdir build && cd build && ../curl-99.98.97/configure && make && make TFLAGS=1 test)
+ # verify cmake build
+ rm -rf curl-99.98.97
+ (tar xf curl-99.98.97.tar.gz && mkdir build && cd build && cmake .. && make && make TFLAGS=1 test)
fi
# whitelist branches to avoid testing feature branches twice (as branch and as pull request)