Skip to content

Commit

Permalink
Merge pull request #61 from kohana/3.3/bug/travis-composer-no-interac…
Browse files Browse the repository at this point in the history
…tion

Resolve composer downloading and caching issues on Travis
  • Loading branch information
acoulton committed Mar 23, 2016
2 parents 90a1f74 + 51ee0f4 commit d7cf45c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ branches:

cache:
directories:
- vendor
- $HOME/.composer/cache
- $HOME/.composer/cache/files

php:
- 5.3
Expand All @@ -26,8 +25,9 @@ matrix:
env: 'COMPOSER_PHPUNIT="lowest"'

before_script:
- composer install --prefer-dist
- if [ "$COMPOSER_PHPUNIT" = "lowest" ]; then composer update --prefer-lowest --with-dependencies phpunit/phpunit; fi;
- composer self-update
- composer install --prefer-dist --no-interaction
- if [ "$COMPOSER_PHPUNIT" = "lowest" ]; then composer update --prefer-lowest --with-dependencies --prefer-dist --no-interaction phpunit/phpunit; fi;
- vendor/bin/koharness

script:
Expand Down

0 comments on commit d7cf45c

Please sign in to comment.