mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:16:12 +02:00

[BUGFIX] Stop caching vendor/ on Travis CI (#52)

Downgrades of Composer packages do not work reliably
if a higher version of a package already is installed in `vendor/`.
This causes builds to use higher versions of packages than intended
if Travis CI has the corresponding version in the cached and restored
`vendor/` folder.
This commit is contained in:
Oliver Klee 2020-05-22 12:31:09 +02:00 committed by GitHub
parent b8cf63d358
commit 14602e19b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View file

@ -16,7 +16,6 @@ env:
cache: cache:
directories: directories:
- .Build/vendor
- $HOME/.composer/cache - $HOME/.composer/cache
before_install: before_install:

View file

@ -48,6 +48,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Drop the dependency of `roave/security-advisories` - Drop the dependency of `roave/security-advisories`
### Fixed ### Fixed
- Stop caching `vendor/` on Travis CI (#51)
- Use the PHP version from the matrix in the CI (#48) - Use the PHP version from the matrix in the CI (#48)
- Re-add the static TypoScript registration (#41) - Re-add the static TypoScript registration (#41)
- Keep the global namespace clean in `ext_localconf.php` (#40) - Keep the global namespace clean in `ext_localconf.php` (#40)