aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2021-09-14 17:53:13 +0200
committerjackpoz <giacomopoz@gmail.com>2021-09-14 17:53:13 +0200
commit9ada295ffee8a860ea00602e672c397817f31c66 (patch)
treed7a3908e1393982641812bfb53cdc5388a68f83d
parenta2519e2f47cae34b8c306d30620263ed98656f9e (diff)
CI: Remove outdated unusable CI
-rw-r--r--.travis.yml53
1 files changed, 0 insertions, 53 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 4a895c88954..00000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,53 +0,0 @@
-dist: bionic
-
-language: cpp
-compiler:
- - clang
-
-git:
- depth: 1
-
-addons:
- apt:
- sources:
- - sourceline: 'ppa:mhier/libboost-latest'
-# - sourceline: 'ubuntu-toolchain-r-test'
- packages:
- - boost1.67
- - libssl-dev
- - libmysqlclient-dev
- - libreadline6-dev
- - zlib1g-dev
- - libbz2-dev
- - g++-8
-
-services:
- - mysql
-
-before_install:
- - git config user.email "travis@build.bot" && 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=0 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror" -DCMAKE_C_FLAGS_DEBUG="-DNDEBUG" -DCMAKE_CXX_FLAGS_DEBUG="-DNDEBUG" -DCMAKE_INSTALL_PREFIX=check_install
- - cd ..
- - chmod +x contrib/check_updates.sh
-
-script:
- - $CXX --version
- - mysql -uroot < sql/create/create_mysql.sql
- - mysql -utrinity -ptrinity auth < sql/base/auth_database.sql
- - ./contrib/check_updates.sh auth 3.3.5 auth localhost
- - mysql -utrinity -ptrinity characters < sql/base/characters_database.sql
- - ./contrib/check_updates.sh characters 3.3.5 characters localhost
- - mysql -utrinity -ptrinity world < sql/base/dev/world_database.sql
- - cat sql/updates/world/3.3.5/*.sql | mysql -utrinity -ptrinity world
- - mysql -uroot < sql/create/drop_mysql.sql
- - cd bin
- - make -j 4 -k && make install
- - cd check_install/bin
- - ./authserver --version
- - ./worldserver --version