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
|
|
|
|
2016-08-03 13:29:21 +00:00
|
|
|
before_install:
|
2016-10-10 10:22:10 +00:00
|
|
|
- if [ -n "$COVERALLS" ]; then
|
|
|
|
pip install --user cpp-coveralls;
|
|
|
|
fi;
|
2016-08-03 13:29:21 +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
|
2016-06-30 12:51:16 +00:00
|
|
|
- clang-3.6
|
2015-10-12 20:15:43 +00:00
|
|
|
- gcc-5
|
2016-11-09 16:25:35 +00:00
|
|
|
- g++-5
|
|
|
|
- golang
|
2016-03-07 11:59:40 +00:00
|
|
|
- binutils-mingw-w64
|
|
|
|
- gcc-mingw-w64
|
2015-10-12 20:15:43 +00:00
|
|
|
sources:
|
2016-06-30 12:51:16 +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
|
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:
|
2017-01-12 13:20:54 +00:00
|
|
|
- CONFIG_OPTS="" DESTDIR="_install"
|
2016-11-01 14:28:16 +00:00
|
|
|
- CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2"
|
2017-01-12 13:20:54 +00:00
|
|
|
- CONFIG_OPTS="no-pic --strict-warnings" BUILDONLY="yes" CHECKDOCS="yes"
|
2016-04-14 13:28:13 +00:00
|
|
|
- CONFIG_OPTS="no-engine no-shared --strict-warnings" BUILDONLY="yes"
|
2016-08-04 22:48:44 +00:00
|
|
|
- CONFIG_OPTS="no-stdio --strict-warnings" BUILDONLY="yes"
|
2017-02-14 16:51:22 +00:00
|
|
|
- CONFIG_OPTS="no-ec" BUILDONLY="yes"
|
2015-09-21 23:54:36 +00:00
|
|
|
|
|
|
|
matrix:
|
2015-10-12 20:15:43 +00:00
|
|
|
include:
|
2016-11-03 15:46:14 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
|
|
|
env: CONFIG_OPTS="--strict-warnings no-deprecated" BUILDONLY="yes"
|
2016-08-03 13:29:21 +00:00
|
|
|
- os: linux
|
2016-11-09 16:25:35 +00:00
|
|
|
compiler: gcc-5
|
2016-12-20 18:58:43 +00:00
|
|
|
env: CONFIG_OPTS="--debug --coverage no-asm enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-nextprotoneg enable-weak-ssl-ciphers enable-external-tests no-shared -DPEDANTIC -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION" COVERALLS="yes" BORINGSSL_TESTS="yes" CXX="g++-5"
|
2016-07-28 18:24:28 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
2016-09-08 08:57:31 +00:00
|
|
|
env: CONFIG_OPTS="enable-msan"
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
2016-06-30 12:51:16 +00:00
|
|
|
compiler: clang-3.6
|
2016-12-03 13:37:16 +00:00
|
|
|
env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-nextprotoneg -fno-sanitize=alignment no-shared -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION"
|
2016-06-30 12:51:16 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang-3.6
|
2016-12-03 13:37:16 +00:00
|
|
|
env: CONFIG_OPTS="no-asm enable-asan enable-rc5 enable-md2 no-shared -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION"
|
2015-10-06 18:27:50 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
2016-11-01 14:28:16 +00:00
|
|
|
env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC"
|
2016-12-20 18:58:43 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc-5
|
|
|
|
env: CONFIG_OPTS="--strict-warnings enable-tls1_3" COMMENT="Move to the BORINGTEST build when interoperable"
|
2016-08-04 22:48:44 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: i686-w64-mingw32-gcc
|
2016-10-09 21:28:03 +00:00
|
|
|
env: CONFIG_OPTS="no-stdio" BUILDONLY="yes"
|
2016-03-07 11:59:40 +00:00
|
|
|
- os: linux
|
2016-10-10 10:22:10 +00:00
|
|
|
compiler: i686-w64-mingw32-gcc
|
2016-03-07 11:59:40 +00:00
|
|
|
env: CONFIG_OPTS="no-pic"
|
2016-08-04 22:48:44 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: x86_64-w64-mingw32-gcc
|
2016-10-10 10:22:10 +00:00
|
|
|
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:
|
2016-08-04 09:50:39 +00:00
|
|
|
- if [ -n "$DESTDIR" ]; then
|
|
|
|
sh .travis-create-release.sh $TRAVIS_OS_NAME;
|
|
|
|
tar -xvzf _srcdist.tar.gz;
|
|
|
|
mkdir _build;
|
|
|
|
cd _build;
|
|
|
|
srcdir=../_srcdist;
|
|
|
|
top=..;
|
|
|
|
else
|
|
|
|
srcdir=.;
|
|
|
|
top=.;
|
|
|
|
fi
|
2015-09-21 23:54:36 +00:00
|
|
|
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
|
|
|
|
export CROSS_COMPILE=${CC%%gcc}; unset CC;
|
2016-08-04 09:50:39 +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-08-04 09:50:39 +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-08-15 16:46:39 +00:00
|
|
|
$srcdir/config -v $CONFIG_OPTS;
|
2015-09-21 23:54:36 +00:00
|
|
|
fi
|
2016-08-04 09:50:39 +00:00
|
|
|
- cd $top
|
2015-08-19 22:12:29 +00:00
|
|
|
|
|
|
|
script:
|
2016-08-15 16:45:22 +00:00
|
|
|
- if [ -z "$BUILDONLY" ]; then
|
|
|
|
make="make -s";
|
|
|
|
else
|
|
|
|
make="make";
|
|
|
|
fi
|
2016-11-09 16:25:35 +00:00
|
|
|
- top=${PWD}
|
2016-08-04 09:50:39 +00:00
|
|
|
- if [ -n "$DESTDIR" ]; then
|
|
|
|
cd _build;
|
|
|
|
fi
|
2016-08-15 16:45:22 +00:00
|
|
|
- $make update
|
2017-01-10 03:41:26 +00:00
|
|
|
- if [ -n "$CHECKDOCS" ]; then
|
|
|
|
$make doc-nits;
|
|
|
|
fi
|
2016-08-15 16:45:22 +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
|
2016-10-09 21:28:03 +00:00
|
|
|
sudo apt-get -yq --no-install-suggests --no-install-recommends --force-yes install wine;
|
2016-03-07 11:59:40 +00:00
|
|
|
export EXE_SHELL="wine" WINEPREFIX=`pwd`;
|
|
|
|
fi;
|
2016-11-09 16:25:35 +00:00
|
|
|
HARNESS_VERBOSE=yes BORING_RUNNER_DIR=$top/boringssl/ssl/test/runner make test;
|
2016-03-14 11:47:47 +00:00
|
|
|
else
|
2016-08-15 16:45:22 +00:00
|
|
|
$make build_tests;
|
2015-10-16 15:19:04 +00:00
|
|
|
fi
|
2016-03-29 15:50:53 +00:00
|
|
|
- if [ -n "$DESTDIR" ]; then
|
2016-11-09 16:25:35 +00:00
|
|
|
mkdir "$top/$DESTDIR";
|
|
|
|
$make install install_docs DESTDIR="$top/$DESTDIR";
|
2016-03-29 15:50:53 +00:00
|
|
|
fi
|
2016-08-04 09:50:39 +00:00
|
|
|
- cd $top
|
2015-08-19 22:12:29 +00:00
|
|
|
|
2016-08-03 13:29:21 +00:00
|
|
|
after_success:
|
|
|
|
- if [ -n "$COVERALLS" ]; then
|
2016-11-24 17:51:23 +00:00
|
|
|
coveralls -b . --gcov gcov-5 --gcov-options '\-lp';
|
2016-08-03 13:29:21 +00:00
|
|
|
fi;
|
|
|
|
|
2015-08-19 22:12:29 +00:00
|
|
|
notifications:
|
2015-09-21 23:54:36 +00:00
|
|
|
email:
|
2016-11-01 23:09:03 +00:00
|
|
|
secure: "xeGNgWO7aoaDgRvcZubposqMsj36aU8c6F0oHfw+rUqltCQ14IgYCUwzocmR2O+Pa7B3Cx5VjMfBFHbQaajZsfod8vu7g+aGq/zkjwbhsr/SR4dljJjFJXLGZjIalm9KgP6KInmVDuINfCqP+MHIY5lZkNI7DMcyHDhVc5nSKvCXV7xTDNgmstvh8rB/z51WfHDqGqfBtiuK5FDNxmvYK8OFJ5W94Lu9LDlizcxwK3GAj7arOui7Z5w8bQ6p4seUE3IvJL1Zbj0pZHxvNb6Zeb2Pn8QF1qLlN8YmBktD4aiw0ce4wYRiL87uLgcOxZY7SVXtv2XYFIYWapU/FKjCqa6vK93V/H9eZWEIYNMKnN3wXm2beqVdnKek3OeGJ8v0y7MbSfuLfRtBqbTSNYnpU1Zuo4MQAvHvEPuwCAYkYQajOSRplMH5sULFKptuVqNtOMfjL8jHb8AEoL1acYIk43ydxeYrzzas4fqgCDJ52573/u0RNdF1lkQBLkuM365OB8VRqtpnoxcdEIY/qBc/8TzZ24fxyrs5qdHFcxGSgpN2EP6cJMqpvkemnCNSdhxUqfzm22N7a3O8+4LFSBGOnHto/PwdsvF/01yGYL0LoZTnoO1i6x7AMJPBh+eyDU0ZjGhj/msjmqeb9C8vRqQ+1WjHrIS1iqCD0Czib8tUPD4="
|