diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 43c1e25d4..19f974e61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,8 +111,17 @@ script: ./configure make ./maketgz 99.98.97 - (tar xf curl-99.98.97.tar.gz && cd curl-99.98.97 && ./configure && make && make TFLAGS=1 test) + # verify in-tree build - and install it + (tar xf curl-99.98.97.tar.gz && \ + cd curl-99.98.97 && \ + ./configure --prefix=$HOME/temp && \ + make && \ + make TFLAGS=1 test && \ + make install) + # basic check of the installed files + bash scripts/installcheck.sh $HOME/temp 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) fi |