blob: 53fd2e008c59c28abb2f111bf4549b080a4070ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
language: c
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
install:
- ./travis.sh getplugins || true
before_script:
- uname -a
- ./travis.sh createdb ragnarok root
- ./travis.sh importdb ragnarok travis
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis');"
script:
- ./travis.sh build $CONFIGURE_FLAGS
- ./travis.sh test ragnarok travis travis
# We can't use this, unfortunately
# http://github.com/travis-ci/travis-ci/issues/979
#compiler:
# - clang
# - gcc
matrix:
exclude:
- env: ignore=this
include:
- compiler: clang
env: CONFIGURE_FLAGS="--enable-debug"
- compiler: clang
env: CONFIGURE_FLAGS="--enable-debug --disable-renewal"
- compiler: gcc
env: CONFIGURE_FLAGS="--enable-debug"
- compiler: gcc
env: CONFIGURE_FLAGS="--enable-debug --disable-renewal"
- compiler: gcc
env: CONFIGURE_FLAGS="--enable-debug --enable-sanitize=full CC=gcc-5 --disable-manager"
- compiler: gcc
env: CONFIGURE_FLAGS="--enable-debug --enable-sanitize=full CC=gcc-5 --disable-manager --disable-renewal"
notifications:
email: false
branches:
except:
- rathena
|