blob: a7f6a789fdd95812d16e27600bb11af2c0a66f75 (
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
|
language: c
compiler:
- clang
- gcc
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
env:
- CONFIGURE_FLAGS="--enable-debug"
- CONFIGURE_FLAGS="--disable-renewal --enable-debug"
notifications:
email: false
branches:
except:
- rathena
|