]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - .travis.yml
Disable the __int128 code path for lehmer 128bit RNG because it doesn't
[xonotic/darkplaces.git] / .travis.yml
1 language: cpp
2 matrix:
3   include:
4   - os: linux
5     env: PROJECT=xonotic OS="linux32"
6     compiler: gcc
7   - os: linux
8     env: PROJECT=xonotic OS="linux64"
9     compiler: gcc
10   - os: linux
11     env: PROJECT=xonotic OS="win32"
12     compiler: gcc
13   - os: linux
14     env: PROJECT=xonotic OS="win64"
15     compiler: gcc
16   - os: osx
17     env: PROJECT=xonotic OS="osx"
18     compiler: gcc
19 before_install:
20 - "./.travis-before_install-${PROJECT}.sh $OS"
21 install:
22 - true
23 before_script:
24 - true
25 script:
26 - "./.travis-script-${PROJECT}.sh $OS"
27 after_success:
28 - true
29 after_failure:
30 - true
31 after_script:
32 - true