mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 01:31:36 +08:00
22fd8e65ad
This was apparently what was interfering with the tests working on Linux. Tweak .travis.yml to install expect so the tests run on Linux.
25 lines
524 B
YAML
25 lines
524 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
|
|
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
|