gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
#!/bin/bash
|
|
# TravisCI Tests
|
|
# Server Management Script
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
version="101716"
|
|
|
|
#### Advanced Variables ####
|
|
|
|
# Github Branch Select
|
|
# Allows for the use of different function files
|
|
# from a different repo and/or branch.
|
|
githubuser="dgibbs64"
|
|
githubrepo="linuxgsm"
|
|
githubbranch="$TRAVIS_BRANCH"
|
|
|
|
echo "================================="
|
|
echo "TravisCI Tests"
|
|
echo "Linux Game Server Manager"
|
|
echo "by Daniel Gibbs"
|
|
echo "https://gameservermanagers.com"
|
|
echo "================================="
|
|
echo ""
|
|
echo "================================="
|
|
echo "Server Tests"
|
|
echo "Using: ${gamename}"
|
|
echo "Testing Branch: $TRAVIS_BRANCH"
|
|
echo "================================="
|
|
echo ""
|
|
|
|
echo "0.0 - Preparing Enviroment"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "Preparing Enviroment to run tests"
|
|
|
|
echo "Downloading jc2server"
|
|
wget https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/JustCause2/jc2server
|
|
chmod +x jc2server
|
|
echo "Enable dev-debug"
|
|
./jc2server dev-debug
|