do & docompile wow server / private helper
Last active
December 11, 2017 21:11
-
-
Save nosmall/30abe02b241528a85b6b790bbb0ce469 to your computer and use it in GitHub Desktop.
do & docompile wow server / private helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## CONF ## | |
ADMINEMAIL="[email protected]" | |
CPUJOBS=8 | |
########## | |
DIRPATH=$(cd `dirname "${BASH_SOURCE[0]}"` && pwd -P) | |
if [ "$1" = "clone" ]; then | |
cd $DIRPATH && rm -rf server && rm -rf database | |
echo "All MaNGOSZERO REPOSITORY is deleted" | |
git clone --recursive --branch develop21 https://github.com/mangoszero/server.git | |
git clone --recursive --branch develop21 https://github.com/mangoszero/database.git | |
fi | |
if [ "$1" = "clean" ]; then | |
cd $DIRPATH/server && rm -rf build | |
echo "Old build is deleted" | |
fi | |
if [ "$1" = "make" -o "$1" = "compile" ]; then | |
if [ "$2" = "debug" -o "$3" = "debug" ]; then | |
export CXXFLAGS="-O1 -ggdb3" | |
export CFLAGS="-O1 -ggdb3" | |
EXTOPTIONS="-DEBUG=1 -DBUILD_TOOLS=1" | |
else | |
EXTOPTIONS="-DBUILD_TOOLS=0" | |
fi | |
cd $DIRPATH/server && mkdir -p build && cd build | |
cmake ../ -DCMAKE_INSTALL_PREFIX=$DIRPATH -DSOAP=1 -DPLAYERBOTS=1 $EXTOPTIONS | |
if [ "$2" = "cmake" -o "$3" = "cmake" ]; then | |
read -n1 -r -p "Press SPACE to continue MAKE or CTRL+C to EXIT" KEY | |
if [ "$KEY" = '' ]; then | |
make -j${CPUJOBS} | |
fi | |
else | |
make -j${CPUJOBS} | |
fi | |
fi | |
if [ "$1" = "install" -o "$1" = "compile" ]; then | |
cd $DIRPATH/server/build && make install | |
fi | |
if [ "$1" = "compile" ]; then | |
screen -S tmpCompilation_${PWD##*/} -X quit | |
fi | |
if [ "$1" = "notify" ] || [ "$2" = "notify" ] || [ "$3" = "notify" ] || [ "$4" = "notify" ]; then | |
touch screenlog.0 | |
echo "$(date +"%T %d-%m-%Y") SERVER COMPILATION DONE! Full report in attachment." | mutt -a "$DIRPATH/screenlog.0" -s "$(date +"%T %d-%m-%Y") / Compilation REPORT" -- $ADMINEMAIL | |
fi | |
if [ "$1" = "help" -o "$1" = "-help" -o "$1" = "-h" -o "$1" = "" ]; then | |
echo "" | |
echo "Command: ./do clone | STEP 1 - download clear binary from MaNGOS - github" | |
echo "Command: ./do clean | - delete old build" | |
echo "" | |
echo "Command: ./do make | STEP 2 - make Release" | |
echo "Command: ./do make debug | - make RelWithDebug" | |
echo "Command: ./do make cmake | - make Cmake Release & wait for ENTER" | |
echo "Command: ./do make debug cmake | - make Cmake RelWithDebug & wait for ENTER" | |
echo "" | |
echo "Command: ./do install | STEP 3 - install compiled core" | |
echo "" | |
echo "Command: ./do compile | STEP 2,3 - make & install core" | |
echo "Command: ./do compile debug | - make debug & install core" | |
echo "" | |
echo "Command: ./do allCommands notify | EXTRA - notify via email about JOB is DONE" | |
echo "" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
screen -L -A -m -d -S tmpCompilation_${PWD##*/} ./do compile notify | |
ls -l | |
screen -ls | |
echo "Screen (tmpCompilation_${PWD##*/}) will be closed automatically. (after compilation)" | |
echo "a) Check progress: screen -x tmpCompilation_${PWD##*/}" | |
echo "b) You must detach screen using Ctrl-a-d" | |
echo "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment