[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Andy Polyakov
appro at openssl.org
Sat Feb 25 17:48:21 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via 5961b15235cc5598c7ec2001aec802ac6724ff18 (commit)
via 46e65eebfe6b8565dcfa2430508ea7ccdff202ad (commit)
from b5cd178f9dd057a76147ccd307bd3cb0672ac098 (commit)
- Log -----------------------------------------------------------------
commit 5961b15235cc5598c7ec2001aec802ac6724ff18
Author: Andy Polyakov <appro at openssl.org>
Date: Fri Feb 24 16:26:22 2017 +0100
.travis.yml: limit mingw tests' resource consumption.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2735)
commit 46e65eebfe6b8565dcfa2430508ea7ccdff202ad
Author: Andy Polyakov <appro at openssl.org>
Date: Fri Feb 24 16:25:14 2017 +0100
.travis.yml: make package pulls conditional.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2735)
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 76 insertions(+), 13 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index cb6066d..4778480 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,19 +5,14 @@ language: c
cache: ccache
before_install:
- - pip install --user cpp-coveralls
+ - if [ -n "$COVERALLS" ]; then
+ pip install --user cpp-coveralls;
+ fi;
addons:
apt:
packages:
- ccache
- - clang-3.9
- - gcc-5
- - binutils-mingw-w64
- - gcc-mingw-w64
- sources:
- - llvm-toolchain-trusty-3.9
- - ubuntu-toolchain-r-test
os:
- linux
@@ -37,41 +32,109 @@ env:
matrix:
include:
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="--strict-warnings no-deprecated" BUILDONLY="yes"
- os: linux
compiler: gcc
env: CONFIG_OPTS="--debug --coverage no-asm enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers" COVERALLS="yes"
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="enable-asan"
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="enable-msan"
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method -fno-sanitize=alignment"
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="no-asm enable-asan enable-rc5 enable-md2"
- os: linux
+ addons:
+ apt:
+ packages:
+ - clang-3.9
+ sources:
+ - llvm-toolchain-trusty-3.9
+ - ubuntu-toolchain-r-test
compiler: clang-3.9
env: CONFIG_OPTS="no-stdio"
- os: linux
+ addons:
+ apt:
+ packages:
+ - gcc-5
+ sources:
+ - ubuntu-toolchain-r-test
compiler: gcc-5
env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC"
- os: linux
+ addons:
+ apt:
+ packages:
+ - binutils-mingw-w64
+ - gcc-mingw-w64
compiler: i686-w64-mingw32-gcc
- env: CONFIG_OPTS="no-pic"
+ env: CONFIG_OPTS="no-pic" TESTS="-test_fuzz"
- os: linux
+ addons:
+ apt:
+ packages:
+ - binutils-mingw-w64
+ - gcc-mingw-w64
compiler: i686-w64-mingw32-gcc
- env: CONFIG_OPTS="no-stdio"
+ env: CONFIG_OPTS="no-stdio" BUILDONLY="yes"
- os: linux
+ addons:
+ apt:
+ packages:
+ - binutils-mingw-w64
+ - gcc-mingw-w64
compiler: x86_64-w64-mingw32-gcc
- env: CONFIG_OPTS="no-pic"
+ env: CONFIG_OPTS="no-pic" TESTS="-test_fuzz"
- os: linux
+ addons:
+ apt:
+ packages:
+ - binutils-mingw-w64
+ - gcc-mingw-w64
compiler: x86_64-w64-mingw32-gcc
- env: CONFIG_OPTS="no-stdio"
+ env: CONFIG_OPTS="no-stdio" BUILDONLY="yes"
exclude:
- os: linux
compiler: clang
@@ -107,7 +170,6 @@ before_script:
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo dpkg --add-architecture i386;
sudo apt-get update;
- sudo apt-get -yq install wine;
fi;
fi;
fi
@@ -129,6 +191,7 @@ script:
- $make
- if [ -z "$BUILDONLY" ]; then
if [ -n "$CROSS_COMPILE" ]; then
+ sudo apt-get -yq install wine;
export EXE_SHELL="wine" WINEPREFIX=`pwd`;
fi;
HARNESS_VERBOSE=yes make test;
More information about the openssl-commits
mailing list