2015-08-19 22:12:29 +00:00
|
|
|
language: c
|
2016-03-06 23:33:35 +00:00
|
|
|
cache: ccache
|
2015-08-19 22:12:29 +00:00
|
|
|
|
2015-09-21 23:54:36 +00:00
|
|
|
addons:
|
2015-10-12 20:15:43 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
2016-03-06 23:33:35 +00:00
|
|
|
- ccache
|
2015-10-06 18:27:50 +00:00
|
|
|
- clang-3.6
|
2015-10-12 20:15:43 +00:00
|
|
|
- gcc-5
|
2016-03-07 11:59:40 +00:00
|
|
|
- binutils-mingw-w64
|
|
|
|
- gcc-mingw-w64
|
|
|
|
- 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
|
|
|
|
- gcc
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
env:
|
2015-09-21 23:54:36 +00:00
|
|
|
- CONFIG_OPTS="shared"
|
2016-01-28 19:26:50 +00:00
|
|
|
- CONFIG_OPTS="--debug --strict-warnings enable-crypto-mdebug enable-rc5 enable-md2"
|
2016-03-07 14:15:20 +00:00
|
|
|
- CONFIG_OPTS="" BUILDONLY="yes"
|
2016-03-08 11:06:44 +00:00
|
|
|
- CONFIG_OPTS="--classic" BUILDONLY="yes"
|
|
|
|
- CONFIG_OPTS="--classic shared" BUILDONLY="yes"
|
2016-03-07 14:15:20 +00:00
|
|
|
- CONFIG_OPTS="no-pic" BUILDONLY="yes"
|
|
|
|
- CONFIG_OPTS="no-engine" BUILDONLY="yes"
|
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
|
2016-03-06 20:59:53 +00:00
|
|
|
env: CONFIG_OPTS="no-asm --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2"
|
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
|
2016-03-06 20:59:53 +00:00
|
|
|
env: CONFIG_OPTS="no-asm --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2"
|
2016-03-07 11:59:40 +00:00
|
|
|
- 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"
|
2015-09-21 23:54:36 +00:00
|
|
|
exclude:
|
2016-03-07 14:15:20 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2016-02-12 10:45:44 +00:00
|
|
|
- os: osx
|
|
|
|
compiler: gcc
|
2015-09-21 23:54:36 +00:00
|
|
|
|
|
|
|
before_script:
|
2015-12-08 11:43:05 +00:00
|
|
|
- sh .travis-create-release.sh $TRAVIS_OS_NAME
|
2015-12-07 14:47:43 +00:00
|
|
|
- tar -xvzf _srcdist.tar.gz
|
2016-03-09 21:34:27 +00:00
|
|
|
- if echo "$CONFIG_OPTS" | grep -e "--classic" >/dev/null; then
|
2016-03-09 15:05:13 +00:00
|
|
|
srcdir=.;
|
|
|
|
cd _srcdist;
|
|
|
|
else
|
2016-03-10 00:31:06 +00:00
|
|
|
srcdir=../_srcdist;
|
2016-03-06 22:34:49 +00:00
|
|
|
mkdir _build;
|
|
|
|
cd _build;
|
|
|
|
fi
|
2015-09-21 23:54:36 +00:00
|
|
|
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
|
|
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
2016-03-06 22:34:49 +00:00
|
|
|
$srcdir/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;
|
2016-03-06 22:34:49 +00:00
|
|
|
$srcdir/Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format;
|
2015-09-21 23:54:36 +00:00
|
|
|
else
|
2016-03-12 16:18:25 +00:00
|
|
|
if which ccache >/dev/null && [ "$CC" != clang-3.6 ]; then
|
2016-03-10 01:14:55 +00:00
|
|
|
CC="ccache $CC";
|
2016-03-10 07:36:57 +00:00
|
|
|
fi;
|
2016-03-06 22:34:49 +00:00
|
|
|
$srcdir/config $CONFIG_OPTS;
|
2015-09-21 23:54:36 +00:00
|
|
|
fi
|
2015-12-07 14:47:43 +00:00
|
|
|
- cd ..
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
script:
|
2016-03-09 21:34:27 +00:00
|
|
|
- if echo "$CONFIG_OPTS" | grep -e "--classic" >/dev/null; then
|
2016-03-06 22:34:49 +00:00
|
|
|
cd _srcdist;
|
2016-03-09 15:05:13 +00:00
|
|
|
else
|
|
|
|
cd _build;
|
2016-03-06 22:34:49 +00:00
|
|
|
fi
|
2015-09-21 23:54:36 +00:00
|
|
|
- make
|
2016-03-06 21:31:18 +00:00
|
|
|
- if [ -z "$BUILDONLY" ]; then
|
2016-03-07 11:59:40 +00:00
|
|
|
if [ -n "$CROSS_COMPILE" ]; then
|
|
|
|
export EXE_SHELL="wine" WINEPREFIX=`pwd`;
|
|
|
|
fi;
|
2016-03-06 21:31:18 +00:00
|
|
|
HARNESS_VERBOSE=yes make test;
|
2016-03-14 11:47:47 +00:00
|
|
|
else
|
|
|
|
make build_tests;
|
2015-10-16 15:19:04 +00:00
|
|
|
fi
|
2015-12-07 14:47:43 +00:00
|
|
|
- cd ..
|
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
|
2016-02-25 19:54:40 +00:00
|
|
|
|