mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-17 14:18:24 +01:00
a1e31f4389
* ticket/12582: [ticket/12582] Strip away copyrighted ICC profile [ticket/12582] Change strip_icc_profiles.sh to only take a single file. [ticket/12582] Run strip_icc_profiles.sh on Travis CI. [ticket/12582] Overwrite inplace instead of creating _original files. [ticket/12582] Add script for strippping ICC profiles from images. Conflicts: .travis.yml
35 lines
613 B
Bash
Executable File
35 lines
613 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# @copyright (c) 2014 phpBB Group
|
|
# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
#
|
|
set -e
|
|
set -x
|
|
|
|
DB=$1
|
|
TRAVIS_PHP_VERSION=$2
|
|
|
|
if [ "$TRAVIS_PHP_VERSION" == "5.5" -a "$DB" == "mysqli" ]
|
|
then
|
|
travis/setup-exiftool.sh
|
|
fi
|
|
|
|
if [ "$DB" == "mariadb" ]
|
|
then
|
|
travis/setup-mariadb.sh
|
|
fi
|
|
|
|
if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]
|
|
then
|
|
travis/setup-php-extensions.sh
|
|
fi
|
|
|
|
if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` == "1" ]
|
|
then
|
|
travis/setup-webserver.sh
|
|
fi
|
|
|
|
cd phpBB
|
|
php ../composer.phar install --dev --no-interaction --prefer-source
|
|
cd ..
|