[openssl] OpenSSL_1_1_1-stable update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Fri Sep 13 13:15:23 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  32bfa2e66ef81d2bc7e1ae1896efca01d03cdc10 (commit)
      from  8ff728d430f4087ddfffed6adf1c25ec6433b71c (commit)


- Log -----------------------------------------------------------------
commit 32bfa2e66ef81d2bc7e1ae1896efca01d03cdc10
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Fri Sep 13 09:24:53 2019 +0200

    Add a minimal linux build target for Travis
    
    [extended tests]
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/9888)

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

Summary of changes:
 .travis.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index b9a2f58776..88b8efc65a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -132,6 +132,9 @@ matrix:
             # exit-zero treats all errors as warnings.  The GitHub editor is 127 chars wide
             - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
           script: true
+        - os: linux
+          compiler: gcc
+          env: EXTENDED_TEST="yes" CONFIGURE_TARGET="linux-generic32" CONFIG_OPTS="--strict-warnings no-shared no-dso no-pic no-autoload-config no-engine no-comp no-cms no-dh no-dsa no-ec2m no-srp no-des no-mdc2 no-md4 no-rc2 no-rc4 no-bf no-camellia no-cast no-idea no-seed no-whirlpool no-ocsp no-sm2 no-sm3 no-sm4 no-ssl3 no-ssl3-method no-psk no-heartbeats no-nextprotoneg no-sctp no-srtp no-asm -DOPENSSL_SMALL_FOOTPRINT"
     exclude:
         - os: linux
           compiler: clang
@@ -175,7 +178,11 @@ before_script:
           elif which ccache >/dev/null; then
               CC="ccache $CC";
           fi;
-          $srcdir/config -v $CONFIG_OPTS;
+          if [ -n "$CONFIGURE_TARGET" ]; then
+              $srcdir/Configure $CONFIGURE_TARGET $CONFIG_OPTS;
+          else
+              $srcdir/config -v $CONFIG_OPTS;
+          fi;
       fi
     - ./configdata.pm --dump
     - cd $top


More information about the openssl-commits mailing list