fruitjam-doom/.travis.yml
Simon Howard 034d2a9fdf Remove library deps not needed for sdl2-branch.
Once this branch is merged, the old SDL1 dependencies will be
automatically removed.
2016-06-13 00:47:42 -04:00

25 lines
492 B
YAML

language: c
compiler: gcc
# Travis uses Ubuntu 12.04 (Precise) for builds by default, which is too
# old and missing the SDL2 packages, so use Trusty instead.
sudo: required
dist: trusty
addons:
apt:
packages:
- libsdl2-dev
- libsdl2-mixer-dev
- libsdl2-net-dev
- libsdl2-image-dev
- libsamplerate0-dev
script: ./autogen.sh && make && make install DESTDIR=/tmp/whatever && make dist
branches:
only:
- master
- sdl2-branch