|
- sudo: false
- language: c
- env: VERBOSE=1
-
- addons:
- apt:
- packages:
- - build-essential
- - pkg-config
- - libncursesw5-dev
- - libx11-dev
- - freeglut3-dev
- - ruby-dev
- # XXX: not supported by Travis-CI, see
- # https://github.com/travis-ci/apt-package-whitelist/issues/1422
- # ... so we just build-dep on libcaca-dev!
- - libslang2-dev
- - libcaca-dev
- - libimlib2-dev
- # FIXME: disable this for now, as it just outputs garbage
- #- texlive-fonts-recommended
- #- doxygen-latex
- - ruby-minitest
-
- # Travis does shallow clones, but we use the Git history
- # for check-copyright. Disable shallow clones; our whole
- # history is about 5 MiB anyway.
- git:
- depth: 9999999
-
- before_install:
- - .travis/before_install.sh
- - ./bootstrap
-
- os:
- - linux
- - osx
-
- compiler:
- - gcc
- - clang
|