X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=f43bd1007dbdc2f41cd83e6fa6ef70827c964720;hp=5407b5f90f06f5ca26f42a1d992fca7bed570a01;hb=8a67946e5bf1cd0fe0020e0f28cbf84642ec4132;hpb=b63447c1150f659cfc54ed290df33345e8ce7cbd diff --git a/.travis.yml b/.travis.yml index 5407b5f90f..f43bd1007d 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 ..