fish-shell/.travis.yml
Kevin Ballard 510ff6a689 Dump interactive logs on travis test failure
As far as I know we can't access the build artifacts from Travis, so we
can't check the interactive logs after a test failure. Add an
environment variable that causes the test runner to dump the logs
itself, and set that variable for Travis.
2014-09-19 14:52:02 -07:00

24 lines
547 B
YAML

language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update
install:
- sudo apt-get install --no-install-recommends libncurses5-dev gettext doxygen expect
script:
- autoreconf
- ./configure
- make
- sudo 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
matrix:
fast_finish: true