-
Notifications
You must be signed in to change notification settings - Fork 78
/
.travis.yml
57 lines (51 loc) · 2.59 KB
/
.travis.yml
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
52
53
54
55
56
57
# Copyright (C) 2014-2017 StormCore
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
sudo: required
dist: trusty
language: cpp
compiler:
- clang
git:
depth: 1
before_install:
- sudo apt-get -qq install build-essential libtool make cmake cmake-data openssl
- sudo apt-get -qq install libssl-dev libmysqlclient-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev
- sudo apt-get -qq install libboost1.55-dev libboost-thread1.55-dev libboost-filesystem1.55-dev libboost-system1.55-dev libboost-program-options1.55-dev libboost-iostreams1.55-dev libboost-regex1.55-dev
- git config user.email "[email protected]" && git config user.name "Travis CI"
- git tag -a -m "Travis build" init
install:
- mysql -uroot -e 'create database test_mysql;'
- mkdir bin
- cd bin
- cmake ../ -DWITH_WARNINGS=1 -DWITH_COREDEBUG=0 -DUSE_COREPCH=1 -DUSE_SCRIPTPCH=1 -DTOOLS=1 -DSCRIPTS="dynamic" -DSERVERS=1 -DNOJEM=1 -DWITH_DYNAMIC_LINKING=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror" -DCMAKE_INSTALL_PREFIX=check_install
- cd ..
- chmod +x contrib/check_updates.sh
script:
- $CXX --version
- mysql -uroot < sql/create/create_mysql.sql
- mysql -udeathcore -pdeathcore auth < sql/base/auth_database.sql
- cat sql/updates/auth/master/*_auth.sql -h 127.0.0.1 | mysql -u deathcore -pdeathcore world -h 127.0.0.1
- mysql -udeathcore -pdeathcore characters < sql/base/characters_database.sql
- cat sql/updates/characters/master/*_characters.sql -h 127.0.0.1 | mysql -u deathcore -pdeathcore world -h 127.0.0.1
- mysql -udeathcore -pdeathcore world < sql/base/dev/world_database.sql
- mysql -udeathcore -pdeathcore hotfixes < sql/base/dev/hotfixes_database.sql
- cat sql/updates/world/master/*_world.sql | mysql -udeathcore -pdeathcore world
- cat sql/updates/hotfixes/master/*_hotfixes.sql | mysql -udeathcore -pdeathcore hotfixes
- mysql -uroot < sql/create/drop_mysql.sql
- cd bin
- make -j 8 -k && make install
- cd check_install/bin
- ./bnetserver --version
- ./worldserver --version