2d28462373
-Allow mingw debug builds to fail on Travis CI -Fix Travis email notifications config -Rename a variable to avoid a bogus warning with old GCC error: declaration of ``dup'' shadows a global declaration [-Werror=shadow] -Disable pedantic ms-format warnings with mingw -Properly define const DH parameters -Restore --debug flag in Travis CI builds; -d would get incorrectly passed to ./Configure in mingw debug builds. Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
language: c
|
|
|
|
addons:
|
|
apt_packages:
|
|
- binutils-mingw-w64
|
|
- gcc-mingw-w64
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
- i686-w64-mingw32-gcc
|
|
- x86_64-w64-mingw32-gcc
|
|
|
|
env:
|
|
- CONFIG_OPTS=""
|
|
- CONFIG_OPTS="shared"
|
|
- CONFIG_OPTS="--debug --strict-warnings"
|
|
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
compiler: i686-w64-mingw32-gcc
|
|
- os: osx
|
|
compiler: x86_64-w64-mingw32-gcc
|
|
allow_failures:
|
|
- compiler: i686-w64-mingw32-gcc
|
|
env: CONFIG_OPTS="--debug --strict-warnings"
|
|
- compiler: x86_64-w64-mingw32-gcc
|
|
env: CONFIG_OPTS="--debug --strict-warnings"
|
|
|
|
before_script:
|
|
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
|
./Configure mingw $CONFIG_OPTS;
|
|
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
|
./Configure mingw64 $CONFIG_OPTS;
|
|
else
|
|
./config $CONFIG_OPTS;
|
|
fi
|
|
|
|
script:
|
|
- make
|
|
- if [ -z "$CROSS_COMPILE" ]; then make test; fi
|
|
|
|
notifications:
|
|
email:
|
|
- openssl-commits@openssl.org
|