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:
|
2016-03-29 15:50:53 +00:00
|
|
|
- CONFIG_OPTS="" DESTDIR="_install"
|
2016-04-14 13:28:13 +00:00
|
|
|
- CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2"
|
|
|
|
- CONFIG_OPTS="--strict-warnings no-shared" BUILDONLY="yes"
|
2016-04-05 13:11:02 +00:00
|
|
|
- CONFIG_OPTS="no-pic --strict-warnings" BUILDONLY="yes"
|
2016-04-14 13:28:13 +00:00
|
|
|
- CONFIG_OPTS="no-engine no-shared --strict-warnings" 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
|
2016-04-14 13:28:13 +00:00
|
|
|
env: CONFIG_OPTS="-fsanitize=address no-shared"
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
2016-04-14 13:28:13 +00:00
|
|
|
env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2 -fno-sanitize=alignment"
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
2016-04-14 13:28:13 +00:00
|
|
|
env: CONFIG_OPTS="no-shared -fsanitize=address"
|
2015-10-12 20:15:43 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
2016-04-14 13:28:13 +00:00
|
|
|
env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -DPEDANTIC -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-04-02 16:36:52 +00:00
|
|
|
- mkdir _build;
|
|
|
|
- cd _build;
|
2015-09-21 23:54:36 +00:00
|
|
|
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
|
|
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
2016-04-20 16:39:01 +00:00
|
|
|
../_srcdist/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-04-20 16:39:01 +00:00
|
|
|
../_srcdist/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-04-20 16:39:01 +00:00
|
|
|
../_srcdist/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-04-02 16:36:52 +00:00
|
|
|
- cd _build;
|
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
|
2016-03-29 15:50:53 +00:00
|
|
|
- if [ -n "$DESTDIR" ]; then
|
|
|
|
mkdir "../$DESTDIR";
|
|
|
|
make install DESTDIR="../$DESTDIR";
|
|
|
|
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
|
|
|
|