[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Thu May 10 09:42:12 UTC 2018


The branch master has been updated
       via  41b77d54472b4aac709bd0699dc64d85ae529a94 (commit)
      from  a01b9cd5a76ea45e083dbf2ca002ca44ce3f525f (commit)


- Log -----------------------------------------------------------------
commit 41b77d54472b4aac709bd0699dc64d85ae529a94
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon May 7 21:56:04 2018 +0200

    .travis.yml: add pair of linux-ppc64le targets.
    
    One is clang --strict-warnings and one gcc sanitizer extended test.
    Sanitizer build is quite expensive, can take >30 mins and is commented
    for occasions when there is reason to believe that PPC-specific problem
    can be diagnosed with sanitizer.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/6192)

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index d5147f1..f23f156 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,6 +31,10 @@ env:
 
 matrix:
     include:
+        - os: linux-ppc64le
+          sudo: false
+          compiler: clang
+          env: CONFIG_OPTS="--strict-warnings -D__NO_STRING_INLINES"
         - os: linux
           addons:
               apt:
@@ -52,6 +56,12 @@ matrix:
                       - gcc-mingw-w64
           compiler: i686-w64-mingw32-gcc
           env: CONFIG_OPTS="no-stdio" BUILDONLY="yes"
+        # Uncomment if there is reason to believe that PPC-specific problem
+        # can be diagnosed with this possibly >30 mins sanitizer build...
+        #- os: linux-ppc64le
+        #  sudo: false
+        #  compiler: gcc
+        #  env: EXTENDED_TEST="yes" CONFIG_OPTS="no-asm enable-asan enable-ubsan no-shared -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -D__NO_STRING_INLINES"
         - os: linux
           addons:
               apt:


More information about the openssl-commits mailing list