-
-
Notifications
You must be signed in to change notification settings - Fork 932
Test with lowest dependencies #564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
dunglas
commented
Jun 2, 2016
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Travis failure related to FriendsOfSymfony/FOSUserBundle#2148 |
.travis.yml
Outdated
- php: hhvm | ||
|
||
before_install: | ||
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the phpenv config-rm xdebug.ini
is no longer required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xdebug is still enabled by default on Travis, so we should keep this.
02a7237
to
8a558c8
Compare
It wasn't accidentally, I'm still working on prefer-lowest support. |
.travis.yml
Outdated
- php: '7.0' | ||
env: PREFER_LOWEST="" | ||
- php: '7.1' | ||
env: PREFER_LOWEST="--prefer-lowest" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you could use COMPOSER_FLAGS
instead so you don't have to declare it for the first build instead of PREFER_LOWEST=""
ee54a59
to
e310552
Compare
It looks like 7.1 is very unstable now (seg fault). I'll focus on the lowest dependencies test for now. |
Test with lowest dependencies