File: .travis.yml

package info (click to toggle)
doomsday 2.3.1%2Bds1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 78,676 kB
  • sloc: cpp: 318,809; ansic: 76,009; python: 1,498; sh: 232; xml: 99; makefile: 71
file content (15 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Configuration for Travis CI
language: cpp
os: linux
sudo: required
dist: xenial
cache: ccache

before_install:
    - sudo apt-get -y install cmake libsdl2-dev libsdl2-mixer-dev libxrandr-dev libxxf86vm-dev libfluidsynth-dev ncurses-dev qt5-default libqt5opengl5-dev libqt5x11extras5-dev

before_script:
    - mkdir build-travis

script:
    - cd build-travis && cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDENG_ENABLE_TESTS=ON ../doomsday && make -j4