mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 19:58:41 +00:00
47 lines
1.7 KiB
Bash
47 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
. var.sh
|
|
. ${ROOT_PATH}/private.sh
|
|
|
|
# Previous cleanup
|
|
rm -r -f ${ROOT_PATH}/${BUILD_PATH}/logs
|
|
rm -r -f ${ROOT_PATH}/${BUILD_PATH}/stats
|
|
rm -r -f ${ROOT_PATH}/${BUILD_PATH}/docs
|
|
|
|
# Creating directories
|
|
mkdir -p ${ROOT_PATH}/${BUILD_PATH}/logs
|
|
mkdir -p ${ROOT_PATH}/${BUILD_PATH}/stats >> ${ROOT_PATH}/${BUILD_PATH}/logs/build.log
|
|
mkdir -p ${ROOT_PATH}/${BUILD_PATH}/docs >> ${ROOT_PATH}/${BUILD_PATH}/logs/build.log
|
|
|
|
# Handling git
|
|
cd ${ROOT_PATH} && git fetch --all && git reset --hard origin/${GIT_BRANCH} && git pull >> ${ROOT_PATH}/${BUILD_PATH}/logs/build.log
|
|
|
|
# Permission handling
|
|
chmod -R 777 ${ROOT_PATH}
|
|
|
|
# Change path for correct script inclusion
|
|
cd ${ROOT_PATH}/${BUILD_PATH}
|
|
|
|
# Setting up demo
|
|
# Setting up database for demo and testing
|
|
mysql -e 'drop database if exists oms;' -u root -p${DB_PASSWORD}
|
|
mysql -e 'create database oms;' -u root -p${DB_PASSWORD}
|
|
#echo "USE mysql;\nUPDATE user SET password=PASSWORD('123456') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
|
|
|
|
curl --connect-timeout 600 --max-time 601 ${WEB_URL}/Admin/Install
|
|
|
|
# Downloading tools
|
|
wget -nc https://phar.phpunit.de/phploc.phar
|
|
wget -nc https://phar.phpunit.de/phpunit.phar
|
|
wget -nc https://github.com/Halleck45/PhpMetrics/raw/master/build/phpmetrics.phar
|
|
wget -nc http://phpdoc.org/phpDocumentor.phar
|
|
wget -nc http://static.pdepend.org/php/latest/pdepend.phar
|
|
wget -nc https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
|
|
wget -nc http://static.phpmd.org/php/latest/phpmd.phar
|
|
wget -nc https://phar.phpunit.de/phpcpd.phar
|
|
wget -nc http://dl.google.com/closure-compiler/compiler-latest.tar.gz
|
|
tar -zxvf compiler-latest.tar.gz
|
|
|
|
# Installing tools
|
|
[[ $(jsonlint -h) != *"Usage: jsonlint"* ]] && npm install jsonlint -g
|