summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3095bbc67f3b39bcef298e4ec1a486afefa72c2a (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