[openssl-commits] [openssl] master update
Emilia Kasper
emilia at openssl.org
Mon Mar 7 13:54:16 UTC 2016
The branch master has been updated
via 56cd71b46e5fe4f403c6247d83c2ad88e537b6c3 (commit)
from 6e42e3ff9cde43830555549fdafa2a8b37b9485b (commit)
- Log -----------------------------------------------------------------
commit 56cd71b46e5fe4f403c6247d83c2ad88e537b6c3
Author: Emilia Kasper <emilia at openssl.org>
Date: Mon Mar 7 12:59:40 2016 +0100
Restore some mingw builds
"no-pic" builds have in fact been green (and reasonably fast), so
restore them while we figure out why tests without "no-pic" hang.
Reviewed-by: Andy Polyakov <appro at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 5407b5f..f43bd10 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,9 @@ addons:
packages:
- clang-3.6
- gcc-5
+ - binutils-mingw-w64
+ - gcc-mingw-w64
+ - wine
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
@@ -45,6 +48,12 @@ matrix:
- os: linux
compiler: clang
env: CONFIG_OPTS="no-engine" BUILDONLY="yes"
+ - os: linux
+ compiler: i686-w64-mingw32-gcc
+ env: CONFIG_OPTS="no-pic"
+ - os: linux
+ compiler: x86_64-w64-mingw32-gcc
+ env: CONFIG_OPTS="no-pic"
exclude:
- os: osx
compiler: clang-3.6
@@ -72,6 +81,9 @@ script:
- cd _srcdist
- make
- if [ -z "$BUILDONLY" ]; then
+ if [ -n "$CROSS_COMPILE" ]; then
+ export EXE_SHELL="wine" WINEPREFIX=`pwd`;
+ fi;
HARNESS_VERBOSE=yes make test;
fi
- cd ..
More information about the openssl-commits
mailing list