summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: fe43d9b70c137a7baeea4b7d7bbbd29ce36d4693 (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
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:
  - cd tools && ./validateinterfaces.py silent
  - ./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