summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-29 17:50:53 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-03 12:28:49 +0200
commitd227a302a3f5fcf15b1bf6c24a633eb661e74c4d (patch)
tree4bb412177447a4bbad2a61ef1e4260271433233d /.travis.yml
parentea96ad5a206b7b5f25dad230333e8ff032df3219 (diff)
Try 'make install' with one of the Travis configurations
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 86a0dcbef5..78cee30374 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,7 +23,7 @@ compiler:
- gcc
env:
- - CONFIG_OPTS=""
+ - CONFIG_OPTS="" DESTDIR="_install"
- CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2"
- CONFIG_OPTS="--strict-warnings no-shared" BUILDONLY="yes"
- CONFIG_OPTS="no-pic --strict-warnings" BUILDONLY="yes"
@@ -85,6 +85,10 @@ script:
else
make build_tests;
fi
+ - if [ -n "$DESTDIR" ]; then
+ mkdir "../$DESTDIR";
+ make install DESTDIR="../$DESTDIR";
+ fi
- cd ..
notifications: