diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 04:34:40 -0700 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 04:34:40 -0700 |
commit | 49696789c94e37372a570bcd204047a00a91ac57 (patch) | |
tree | 9c4d3e91325b6482b32b5fc339fa183b4e365f8c | |
parent | 013a8649a5164b90310e76d99fae2186b831a5f0 (diff) | |
parent | 3c21a8e21efaa46bdd2a3eacfd748047cf322137 (diff) | |
download | forums-49696789c94e37372a570bcd204047a00a91ac57.tar forums-49696789c94e37372a570bcd204047a00a91ac57.tar.gz forums-49696789c94e37372a570bcd204047a00a91ac57.tar.bz2 forums-49696789c94e37372a570bcd204047a00a91ac57.tar.xz forums-49696789c94e37372a570bcd204047a00a91ac57.zip |
Merge pull request #672 from unknownbliss/ticket/10736
[ticket/10736] Changing travis so it installs composer.phar to phpBB/
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index f21928dd37..82f7d27e35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,10 @@ before_script: - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear install --force phpunit/DbUnit; else pyrus install --force phpunit/DbUnit; fi" - phpenv rehash + - cd phpBB - curl -s http://getcomposer.org/installer | php - php composer.phar install + - cd ../ script: - phpunit --configuration travis/phpunit-$DB-travis.xml |