summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-08-16 12:13:11 -0400
committergumi <mekolat@users.noreply.github.com>2017-08-16 13:56:17 -0400
commit2357990ccea2f622992bc1d424eda30cd77ef082 (patch)
treed14dc8c415ee67a423fc929a04a92fccabed621e
parent14b48736cd4cffa540cbe87d60bce0acb1c7d324 (diff)
downloadhercules-2357990ccea2f622992bc1d424eda30cd77ef082.tar.gz
hercules-2357990ccea2f622992bc1d424eda30cd77ef082.tar.bz2
hercules-2357990ccea2f622992bc1d424eda30cd77ef082.tar.xz
hercules-2357990ccea2f622992bc1d424eda30cd77ef082.zip
Update travis for ubuntu trusty
-rw-r--r--.travis.yml11
-rwxr-xr-xtools/ci/travis.sh41
2 files changed, 39 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index a5430dbce..594522d6b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,6 @@
language: c
sudo: false
+dist: trusty
addons:
apt:
sources:
@@ -7,12 +8,12 @@ addons:
install:
- ./tools/ci/travis.sh getplugins || true
-
+
before_script:
- uname -a
- ./tools/ci/travis.sh createdb ragnarok root
- - ./tools/ci/travis.sh importdb ragnarok travis
- - mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis');"
+ - ./tools/ci/travis.sh importdb ragnarok root
+ - ./tools/ci/travis.sh adduser ragnarok travis travis root
script:
- if [[ ! -z "${HPM}" ]]; then ./tools/ci/travis.sh buildhpm $CONFIGURE_FLAGS; fi
@@ -81,10 +82,10 @@ matrix:
- ubuntu-toolchain-r-test
packages:
- gcc-6
-
+
notifications:
email: false
-
+
branches:
except:
- rathena
diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh
index 633248a1a..cc1f15ee8 100755
--- a/tools/ci/travis.sh
+++ b/tools/ci/travis.sh
@@ -33,6 +33,7 @@ function usage {
echo "usage:"
echo " $0 createdb <dbname> [dbuser] [dbpassword] [dbhost]"
echo " $0 importdb <dbname> [dbuser] [dbpassword] [dbhost]"
+ echo " $0 adduser <dbname> <new_user> <new_user_password> [dbuser] [dbpassword] [dbhost]"
echo " $0 build [configure args]"
echo " $0 test <dbname> [dbuser] [dbpassword] [dbhost]"
echo " $0 getplugins"
@@ -93,29 +94,53 @@ case "$MODE" in
fi
DBNAME="$1"
if [ -n "$2" ]; then
- DBUSER_ARG="-u $2"
+ DBUSER_ARG="--user=$2"
DBUSER="$2"
fi
if [ -n "$3" ]; then
- DBPASS_ARG="-p$3"
+ DBPASS_ARG="--password=$3"
DBPASS="$3"
fi
if [ -n "$4" ]; then
- DBHOST_ARG="-h $4"
+ DBHOST_ARG="--host=$4"
DBHOST="$4"
fi
;;
+ adduser)
+ if [ -z "$3" ]; then
+ usage
+ fi
+ DBNAME="$1"
+ NEWUSER="$2"
+ NEWPASS="$3"
+ if [ -n "$4" ]; then
+ DBUSER_ARG="--user=$4"
+ DBUSER="$4"
+ fi
+ if [ -n "$5" ]; then
+ DBPASS_ARG="--password=$5"
+ DBPASS="$5"
+ fi
+ if [ -n "$6" ]; then
+ DBHOST_ARG="--host=$6"
+ DBHOST="$6"
+ fi
+ ;;
esac
case "$MODE" in
createdb)
- echo "Creating database $DBNAME..."
- mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG -e "create database $DBNAME;" || aborterror "Unable to create database."
+ echo "Creating database $DBNAME as $DBUSER..."
+ mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG --execute="CREATE DATABASE $DBNAME;" || aborterror "Unable to create database."
;;
importdb)
- echo "Importing tables into $DBNAME..."
- mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG $DBNAME < sql-files/main.sql || aborterror "Unable to import main database."
- mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG $DBNAME < sql-files/logs.sql || aborterror "Unable to import logs database."
+ echo "Importing tables into $DBNAME as $DBUSER..."
+ mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG --database=$DBNAME < sql-files/main.sql || aborterror "Unable to import main database."
+ mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG --database=$DBNAME < sql-files/logs.sql || aborterror "Unable to import logs database."
+ ;;
+ adduser)
+ echo "Adding user $NEWUSER as $DBUSER, with access to database $DBNAME..."
+ mysql $DBUSER_ARG $DBPASS_ARG $DBHOST_ARG --execute="GRANT SELECT,INSERT,UPDATE,DELETE ON $DBNAME.* TO '$NEWUSER'@'$DBHOST' IDENTIFIED BY '$NEWPASS';"
;;
build)
(cd tools && ./validateinterfaces.py silent) || aborterror "Interface validation error."