2014-05-02 16:32:00 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2014-05-27 20:18:06 +02:00
|
|
|
# This file is part of the phpBB Forum Software package.
|
|
|
|
#
|
|
|
|
# @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
# @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
#
|
|
|
|
# For full copyright and license information, please see
|
|
|
|
# the docs/CREDITS.txt file.
|
2014-05-02 16:32:00 +02:00
|
|
|
#
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
DB=$1
|
|
|
|
TRAVIS_PHP_VERSION=$2
|
2015-09-28 17:40:24 +02:00
|
|
|
NOTESTS=$3
|
2014-05-02 16:32:00 +02:00
|
|
|
|
2015-09-28 17:40:24 +02:00
|
|
|
if [ "$NOTESTS" == '1' ]
|
2014-05-02 16:32:00 +02:00
|
|
|
then
|
|
|
|
cd build
|
|
|
|
../phpBB/vendor/bin/phing sniff
|
|
|
|
cd ..
|
|
|
|
fi
|