Skip to content

Commit

Permalink
Update travis config for minimum version scenario.
Browse files Browse the repository at this point in the history
phpunit 7.0.0 lost the ability to recursively create folders (fixed in 7.0.3), so we need to manually create the 'build' directory before running phpunit when running against minimum versions.
  • Loading branch information
foxworth42 committed Aug 21, 2019
1 parent e3faf63 commit 6bba91c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -20,7 +20,7 @@ matrix:

install:
- if [[ $MINIMUM_VERSIONS = false ]]; then composer install; fi
- if [[ $MINIMUM_VERSIONS = true ]]; then composer update --no-interaction --prefer-lowest; fi
- if [[ $MINIMUM_VERSIONS = true ]]; then composer update --no-interaction --prefer-lowest; mkdir build; fi

script:
- composer run test
Expand Down

0 comments on commit 6bba91c

Please sign in to comment.