diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-05-27 01:42:42 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-27 17:23:54 +0200 |
commit | 4f9aa5e3843eb4e8e6b808b294b81649e1c435f3 (patch) | |
tree | 05b03df36efd7ad1a6baaf56bb5ad25e6e160f7f | |
parent | ac3bc458742d662199079c291a051b1fa7f41b1a (diff) | |
download | forums-4f9aa5e3843eb4e8e6b808b294b81649e1c435f3.tar forums-4f9aa5e3843eb4e8e6b808b294b81649e1c435f3.tar.gz forums-4f9aa5e3843eb4e8e6b808b294b81649e1c435f3.tar.bz2 forums-4f9aa5e3843eb4e8e6b808b294b81649e1c435f3.tar.xz forums-4f9aa5e3843eb4e8e6b808b294b81649e1c435f3.zip |
[ticket/12582] Run strip_icc_profiles.sh on Travis CI.
PHPBB3-12582
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 26744c57ef..015f99bd23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,10 +22,12 @@ before_script: - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then php ../composer.phar install --dev --no-interaction --prefer-source; fi" - cd .. - sh -c "if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` = "1" ]; then travis/setup-webserver.sh; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysql' ]; then sudo apt-get update; sudo apt-get install -y libimage-exiftool-perl; fi" script: - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then phpunit --configuration travis/phpunit-$DB-5-2-travis.xml; else phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysql' -a '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh origin/$TRAVIS_BRANCH..FETCH_HEAD; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysql' ]; then phpBB/develop/strip_icc_profiles.sh ./; fi" matrix: include: |