diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-06-08 10:36:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-06-16 05:10:55 +0300 |
commit | ad15a28454e81aa1258868a5002eab0c31fabf2f (patch) | |
tree | b0e7d2dd84767e08578684e6470a81e0703535c9 /tools | |
parent | 9e3f2e60952846bee1f58ed81e777c75cbd17f28 (diff) | |
download | hercules-ad15a28454e81aa1258868a5002eab0c31fabf2f.tar.gz hercules-ad15a28454e81aa1258868a5002eab0c31fabf2f.tar.bz2 hercules-ad15a28454e81aa1258868a5002eab0c31fabf2f.tar.xz hercules-ad15a28454e81aa1258868a5002eab0c31fabf2f.zip |
Run servers in travis.sh with all existing plugins
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ci/travis.sh | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh index 195bee2f8..1014787a8 100755 --- a/tools/ci/travis.sh +++ b/tools/ci/travis.sh @@ -223,7 +223,7 @@ EOF [ $? -eq 0 ] || aborterror "Unable to override inter-server configuration, aborting tests." ARGS="--load-script npc/dev/test.txt " ARGS="--load-plugin script_mapquit $ARGS --load-script npc/dev/ci_test.txt" - PLUGINS="--load-plugin HPMHooking --load-plugin sample" + PLUGINS="--load-plugin HPMHooking" echo "run tests" if [[ $DBUSER == "travis" ]]; then echo "Disable leak dection on travis" @@ -237,10 +237,31 @@ EOF run_server ./login-server run_server ./char-server run_server ./map-server "$ARGS" - echo "run all servers wit HPM" + echo "run all servers with HPM" run_server ./login-server "$PLUGINS" run_server ./char-server "$PLUGINS" run_server ./map-server "$ARGS $PLUGINS" + echo "run all servers with sample plugin" + run_server ./login-server "$PLUGINS --load-plugin sample" + run_server ./char-server "$PLUGINS --load-plugin sample" + run_server ./map-server "$PLUGINS --load-plugin sample" + echo "run all servers with constdb2doc" + run_server ./map-server "$PLUGINS --load-plugin constdb2doc --constdb2doc" + echo "run all servers with db2sql" + run_server ./map-server "$PLUGINS --load-plugin db2sql --db2sql" + run_server ./map-server "$PLUGINS --load-plugin db2sql --itemdb2sql" + run_server ./map-server "$PLUGINS --load-plugin db2sql --mobdb2sql" +# echo "run all servers with dbghelpplug" +# run_server ./login-server "$PLUGINS --load-plugin dbghelpplug" +# run_server ./char-server "$PLUGINS --load-plugin dbghelpplug" +# run_server ./map-server "$PLUGINS --load-plugin dbghelpplug" + echo "run all servers with generate-translations" + run_server ./map-server "$PLUGINS --load-plugin generate-translations --generate-translations" + echo "run all servers with mapcache" +# for other flags need grf or other files + run_server ./map-server "$PLUGINS --load-plugin mapcache --fix-md5" + echo "run all servers with script_mapquit" + run_server ./map-server "$PLUGINS --load-plugin script_mapquit" ;; getplugins) echo "Cloning plugins repository..." |