2015-08-19 22:12:29 +00:00
|
|
|
language: c
|
|
|
|
|
2015-09-21 23:54:36 +00:00
|
|
|
addons:
|
2015-10-12 20:15:43 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
2015-10-06 18:27:50 +00:00
|
|
|
- clang-3.6
|
2015-10-12 20:15:43 +00:00
|
|
|
- gcc-5
|
|
|
|
- binutils-mingw-w64
|
|
|
|
- gcc-mingw-w64
|
2015-10-16 15:19:04 +00:00
|
|
|
- wine
|
2015-10-12 20:15:43 +00:00
|
|
|
sources:
|
2015-10-06 18:27:50 +00:00
|
|
|
- llvm-toolchain-precise-3.6
|
2015-10-12 20:15:43 +00:00
|
|
|
- ubuntu-toolchain-r-test
|
2015-09-21 23:54:36 +00:00
|
|
|
|
2015-08-19 22:12:29 +00:00
|
|
|
os:
|
2015-09-21 23:54:36 +00:00
|
|
|
- linux
|
|
|
|
- osx
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
compiler:
|
2015-09-21 23:54:36 +00:00
|
|
|
- clang
|
2015-10-06 18:27:50 +00:00
|
|
|
- clang-3.6
|
2015-09-21 23:54:36 +00:00
|
|
|
- gcc
|
2015-10-12 20:15:43 +00:00
|
|
|
- gcc-5
|
2015-09-21 23:54:36 +00:00
|
|
|
- i686-w64-mingw32-gcc
|
|
|
|
- x86_64-w64-mingw32-gcc
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
env:
|
2015-09-21 23:54:36 +00:00
|
|
|
- CONFIG_OPTS=""
|
|
|
|
- CONFIG_OPTS="shared"
|
2015-10-22 10:34:24 +00:00
|
|
|
- CONFIG_OPTS="no-asm"
|
2015-10-06 16:23:42 +00:00
|
|
|
- CONFIG_OPTS="--debug --strict-warnings"
|
2015-09-21 23:54:36 +00:00
|
|
|
|
|
|
|
matrix:
|
2015-10-12 20:15:43 +00:00
|
|
|
include:
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
|
|
|
env: CONFIG_OPTS="-fsanitize=address"
|
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
2015-10-17 19:00:55 +00:00
|
|
|
env: CONFIG_OPTS="no-asm --debug --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined"
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
|
|
|
env: CONFIG_OPTS="-fsanitize=address"
|
2015-10-12 20:15:43 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
2015-10-17 19:00:55 +00:00
|
|
|
env: CONFIG_OPTS="no-asm --debug --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined"
|
2015-09-21 23:54:36 +00:00
|
|
|
exclude:
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: osx
|
|
|
|
compiler: clang-3.6
|
2015-10-12 20:15:43 +00:00
|
|
|
- os: osx
|
|
|
|
compiler: gcc-5
|
2015-09-21 23:54:36 +00:00
|
|
|
- os: osx
|
|
|
|
compiler: i686-w64-mingw32-gcc
|
|
|
|
- os: osx
|
|
|
|
compiler: x86_64-w64-mingw32-gcc
|
2015-10-16 15:19:04 +00:00
|
|
|
- compiler: i686-w64-mingw32-gcc
|
|
|
|
env: CONFIG_OPTS="shared"
|
|
|
|
- compiler: x86_64-w64-mingw32-gcc
|
|
|
|
env: CONFIG_OPTS="shared"
|
2015-10-22 10:34:24 +00:00
|
|
|
- compiler: i686-w64-mingw32-gcc
|
|
|
|
env: CONFIG_OPTS="no-asm"
|
|
|
|
- compiler: x86_64-w64-mingw32-gcc
|
|
|
|
env: CONFIG_OPTS="no-asm"
|
2015-10-06 16:23:42 +00:00
|
|
|
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"
|
2015-09-21 23:54:36 +00:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
|
|
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
2015-10-07 07:35:12 +00:00
|
|
|
./Configure mingw $CONFIG_OPTS -Wno-pedantic-ms-format;
|
2015-09-21 23:54:36 +00:00
|
|
|
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
|
|
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
2015-10-07 07:35:12 +00:00
|
|
|
./Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format;
|
2015-09-21 23:54:36 +00:00
|
|
|
else
|
|
|
|
./config $CONFIG_OPTS;
|
|
|
|
fi
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
script:
|
2015-09-21 23:54:36 +00:00
|
|
|
- make
|
2015-10-16 15:19:04 +00:00
|
|
|
- if [ -n "$CROSS_COMPILE" ]; then
|
|
|
|
export EXE_SHELL="wine" WINEPREFIX=`pwd`;
|
|
|
|
fi
|
|
|
|
- make test
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
notifications:
|
2015-09-21 23:54:36 +00:00
|
|
|
email:
|
2015-10-06 16:23:42 +00:00
|
|
|
- openssl-commits@openssl.org
|