Update the SSL_set_bio()/SSL_set0_rbio()/SSL_set0_wbio() docs
[openssl.git] / .travis.yml
index 653e459a596e4c780cb6889f05395df29ebdf81a..a278cb2c9fbc7499e90b3790e5e2db63e52d6076 100644 (file)
@@ -5,11 +5,13 @@ addons:
     apt:
         packages:
             - ccache
+            - clang-3.6
             - gcc-5
             - binutils-mingw-w64
             - gcc-mingw-w64
             - wine
         sources:
+            - llvm-toolchain-precise-3.6
             - ubuntu-toolchain-r-test
 
 os:
@@ -30,13 +32,16 @@ env:
 matrix:
     include:
         - os: linux
-          compiler: clang
+          compiler: clang-3.6
           env: CONFIG_OPTS="no-shared enable-asan"
         - os: linux
-          compiler: gcc-5
-          env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -fno-sanitize=alignment"
+          compiler: clang-3.6
+          env: CONFIG_OPTS="no-shared enable-msan"
         - os: linux
-          compiler: gcc-5
+          compiler: clang-3.6
+          env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method -fno-sanitize=alignment"
+        - os: linux
+          compiler: clang-3.6
           env: CONFIG_OPTS="no-shared no-asm enable-asan enable-rc5 enable-md2"
         - os: linux
           compiler: gcc-5
@@ -74,6 +79,7 @@ before_script:
 
 script:
     - cd _build;
+    - make update
     - make
     - if [ -z "$BUILDONLY" ]; then
           if [ -n "$CROSS_COMPILE" ]; then
@@ -85,7 +91,7 @@ script:
       fi
     - if [ -n "$DESTDIR" ]; then
           mkdir "../$DESTDIR";
-          make install DESTDIR="../$DESTDIR";
+          make install install_docs DESTDIR="../$DESTDIR";
       fi
     - cd ..