diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2018-07-15 23:13:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-15 23:13:42 +0200 |
commit | cd722b73d3ae62367cb370b5eed98f83a1923cb3 (patch) | |
tree | 644bc098ffcfe54f1a0959ad0758b3fecb5d4627 | |
parent | 85388901cf6a69659569ad751767fd7108b25a3c (diff) |
Updated .travis.yml for new bash system
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index fae8027228..93272f37b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,15 +26,15 @@ before_install: install: # install OS deps (apt-get) - - bash ./install.sh 2 + - bash ./acore.sh "install-deps" # create config file - echo "CCUSTOMOPTIONS='-DWITH_WARNINGS=1 -DWITH_COREDEBUG=1 -DUSE_COREPCH=0 -DUSE_SCRIPTPCH=0 -DTOOLS=1 -DSCRIPTS=1 -DSERVERS=1 -DWITH_PERFTOOLS=1 -DENABLE_EXTRA_LOGS=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=\"-Werror\" -DCMAKE_CXX_FLAGS=\"-Werror\"';" >> conf/config.sh - echo "DB_CHARACTERS_CONF=\"MYSQL_USER='root'; MYSQL_PASS=''; MYSQL_HOST='127.0.0.1';\"" >> conf/config.sh - echo "DB_AUTH_CONF=\"MYSQL_USER='root'; MYSQL_PASS=''; MYSQL_HOST='127.0.0.1';\"" >> conf/config.sh - echo "DB_WORLD_CONF=\"MYSQL_USER='root'; MYSQL_PASS=''; MYSQL_HOST='127.0.0.1';\"" >> conf/config.sh # create and import mysql - - bash ./install.sh 7 + - bash ./acore.sh "db-assembler" "import-all" script: # compile - - bash ./install.sh 5 + - bash ./acore.sh "compiler" "all" |