mangos/.travis.yml
Rochet2 63343716b5 Eluna: Remove travis script for getting last eluna
Get the designed eluna version instead.
2015-03-26 15:31:27 +02:00

23 lines
463 B
YAML

language: cpp
# reduce clone time by only getting the latest commit and not the whole history (default for travis is 100)
git:
depth: 1
# only run travis on the master branch
branches:
only:
- release20
- develop21
# build with both gcc and clang to ensure compatibility
compiler:
- gcc
script:
- test -d _build || mkdir _build
- test -d _install || mkdir _install
- cd _build
- cmake -DCMAKE_INSTALL_PREFIX=../_install ..
- make -j4