MOON
Server: Apache
System: Linux u18017238.onlinehome-server.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: emblazeone (1003)
PHP: 7.3.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/emblazeone/www/newmantis/scripts/travis_script.sh
#!/bin/bash -e
# -----------------------------------------------------------------------------
# MantisBT Travis-CI test script execution
# -----------------------------------------------------------------------------


# -----------------------------------------------------------------------------
# Install toolchain and build docbooks if they have been modified
#
function build_docbook() {

	DOCBOOKS="Admin_Guide Developers_Guide"

	for BOOK in $DOCBOOKS
	do
		echo
		echo "Building '$BOOK'..."
		cd $TRAVIS_BUILD_DIR/docbook/$BOOK
		make
	done
}


# -----------------------------------------------------------------------------
# Main block
#
if [[ -z $DOCBOOK ]]
then
	echo "Executing MantisBT test scripts..."
	phpunit --bootstrap ./tests/bootstrap.php ./tests/AllTests.php
else
	echo "Building DocBook..."
	build_docbook
fi