Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
- SYMFONY_DEPRECATIONS_HELPER=weak_vendors
- APP_ENV=test

matrix:
jobs:

@teohhanhui teohhanhui Jul 16, 2018

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor future-proofing:

matrix is an alias of jobs

travis-ci/travis-ci#7754 (comment)

Travis CI docs are outdated: travis-ci/docs-travis-ci-com#1500 (comment)

include:
- php: '7.1'
- php: '7.2'
Expand All @@ -32,7 +32,8 @@ matrix:
- mysql -e 'CREATE DATABASE api_platform_test;'
env: APP_ENV=mysql
allow_failures:
env: SYMFONY_DEPRECATIONS_HELPER=0
- env: SYMFONY_DEPRECATIONS_HELPER=0
fast_finish: true

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't seem to have any effect at the moment... lol


before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ cache:
- '%LOCALAPPDATA%\Composer\files'

environment:
APP_ENV: 'test'
SYMFONY_DEPRECATIONS_HELPER: weak_vendors
APP_ENV: test

install:
- ps: Set-Service wuauserv -StartupType Manual
Expand Down