The build fails on Travis since we require autoconf 2.69 (commit db055a). Travis still defaults to Ubuntu Precise, and Precise's autoconf is too old. We could revert commit db055a and rely on Travis to keep things working with old autoconf. But Precise reached end of life a couple of months ago, and I suspect it's only a matter of time until Travis drops it, too. Fix the build on Travis by requesting Trusty. Its end of life is planned for April 2019. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
24 lines
371 B
YAML
24 lines
371 B
YAML
## Travis CI configuration
|
|
dist: trusty
|
|
sudo: false
|
|
language: c
|
|
branches:
|
|
only:
|
|
- changeling
|
|
- fever
|
|
- master
|
|
- travis
|
|
# Test matrix:
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
os:
|
|
- linux
|
|
- osx
|
|
# How to build:
|
|
script: ./bootstrap && ./configure && make check
|
|
# Notifications
|
|
notifications:
|
|
email:
|
|
- empserver-devel@wolfpackempire.com
|
|
irc: "irc.oftc.net#wolfpack"
|