2014-01-13 08:53:26 +00:00
|
|
|
language: cpp
|
2018-11-08 17:38:14 +00:00
|
|
|
dist: xenial
|
2016-06-14 22:00:10 +00:00
|
|
|
sudo: required
|
2015-10-07 07:34:53 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- expect
|
|
|
|
- gettext
|
|
|
|
- libncurses5-dev
|
2019-02-05 05:55:56 +00:00
|
|
|
- libpcre2-dev
|
2016-10-16 10:56:55 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
2019-02-05 05:55:56 +00:00
|
|
|
packages: # Don't use libpcre2-dev here, so that one build uses the vendored code
|
2016-10-16 10:56:55 +00:00
|
|
|
- expect
|
|
|
|
- gettext
|
2016-10-16 12:07:26 +00:00
|
|
|
- lib32ncurses5-dev
|
|
|
|
- g++-multilib
|
2016-10-16 11:16:26 +00:00
|
|
|
env:
|
2017-09-24 06:26:27 +00:00
|
|
|
- CXXFLAGS="-g -O2 -m32" CFLAGS="-g -m32"
|
2016-06-14 19:42:41 +00:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
2016-10-16 12:13:04 +00:00
|
|
|
env:
|
2019-02-05 05:37:01 +00:00
|
|
|
- CXXFLAGS="-g -O2 -fno-omit-frame-pointer -fsanitize=undefined -fsanitize=address"
|
|
|
|
- ASAN_OPTIONS=check_initialization_order=1:detect_stack_use_after_return=1:detect_leaks=1
|
2019-02-09 13:41:10 +00:00
|
|
|
- UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1:suppressions=$TRAVIS_BUILD_DIR/build_tools/ubsan.blacklist
|
2016-06-14 19:42:41 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- expect
|
|
|
|
- gettext
|
|
|
|
- libncurses5-dev
|
2019-02-05 05:55:56 +00:00
|
|
|
- libpcre2-dev
|
2015-10-07 07:34:53 +00:00
|
|
|
- os: osx
|
|
|
|
before_install:
|
|
|
|
- brew update
|
2016-10-16 11:16:26 +00:00
|
|
|
- brew install pcre2 # use system PCRE2
|
2015-10-07 07:34:53 +00:00
|
|
|
fast_finish: true
|
|
|
|
|
2014-01-13 08:53:26 +00:00
|
|
|
script:
|
2019-02-27 13:03:33 +00:00
|
|
|
- cmake -DCMAKE_INSTALL_PREFIX=$HOME/prefix . || cat CMakeFiles/CMakeError.log &&
|
|
|
|
make -j2 &&
|
|
|
|
make install &&
|
|
|
|
make test SHOW_INTERACTIVE_LOG=1
|
2016-10-16 10:56:55 +00:00
|
|
|
|
2014-01-13 08:53:26 +00:00
|
|
|
notifications:
|
2016-02-11 15:06:18 +00:00
|
|
|
# Some items are encrypted so that notifications from other repositories
|
|
|
|
# don't flood the official repositories.
|
2014-01-13 08:53:26 +00:00
|
|
|
irc:
|
|
|
|
channels:
|
2016-02-11 15:06:18 +00:00
|
|
|
#- "irc.oftc.net#fish"
|
|
|
|
secure: "eRk9KGZ5+mrlD2SoI8yg2Sp8OYrh7YPyGe3WCDQUwTnNgNDII34rbM9a6UOA/l7AeWSNY8joLq5xVLCU4wpFgUcJ11SYIpMnLosZK29OW4ubDOHmdBDvJ971rLgAVG9cXngZtIxEVVxN/jnS1Qr8GKZx4DjkaTMgz1pemb4WxCc="
|
2014-02-11 01:47:29 +00:00
|
|
|
template:
|
|
|
|
- "%{repository}#%{build_number} (%{commit} on %{branch} by %{author}): %{message} Details at %{build_url}"
|
|
|
|
use_notice: true
|
|
|
|
skip_join: true
|
2015-03-20 06:46:13 +00:00
|
|
|
webhooks:
|
|
|
|
urls:
|
2016-06-14 19:42:41 +00:00
|
|
|
#- https://webhooks.gitter.im/e/61821cec3015bf0f8bb1
|
|
|
|
secure: fPfOmxnC3MCsfR1oocVFeWLawGcRZkn+8fNHlSOeZ+SqqoZfcCHgQTvQ22TqmVl1yvkXbNlaXjo6dbVzTOAh7r7H0bRMEKBVh3dQS7wqjB1sKivpXd8PAS3BTj5MQpGeJzdHnDuwVlwDktGtfHfhGeq1Go/4IosOq8u+6RTe28g=
|