mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
74cd977566
Leak checking is disabled for now as it has the potential to produce too many false positives.
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
language: cpp
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- bc
|
|
- expect
|
|
- gettext
|
|
- libncurses5-dev
|
|
|
|
- os: linux
|
|
compiler: clang
|
|
addons:
|
|
apt:
|
|
sources:
|
|
# stick with 3.6; the 3.7 Debian binaries do not support ASan yet
|
|
# https://llvm.org/bugs/show_bug.cgi?id=22757
|
|
- llvm-toolchain-precise-3.6
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- clang-3.6
|
|
- llvm-3.6 # for llvm-symbolizer
|
|
- bc
|
|
- expect
|
|
- gettext
|
|
- libncurses5-dev
|
|
env:
|
|
- CXXFLAGS="-g -fno-omit-frame-pointer -fsanitize=address"
|
|
- ASAN_SYMBOLIZER_PATH="/usr/bin/llvm-symbolizer-3.6"
|
|
- ASAN_OPTIONS=check_initialization_order=1:detect_stack_use_after_return=1:detect_leaks=0
|
|
before_install: export CXX=clang++-3.6
|
|
|
|
- os: osx
|
|
before_install:
|
|
- brew update
|
|
- brew install pcre2 # use system PCRE2
|
|
|
|
fast_finish: true
|
|
|
|
script:
|
|
- autoreconf
|
|
- ./configure --prefix=$HOME/prefix || cat config.log
|
|
- make -j2
|
|
- make install
|
|
- make test SHOW_INTERACTIVE_LOG=1
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.oftc.net#fish"
|
|
template:
|
|
- "%{repository}#%{build_number} (%{commit} on %{branch} by %{author}): %{message} Details at %{build_url}"
|
|
use_notice: true
|
|
skip_join: true
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/61821cec3015bf0f8bb1
|