mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 17:36:12 +01:00
[BUGFIX] Explicitly require MySQL on Travis CI (#38)
Also properly quote the PHP version numbers as strings.
This commit is contained in:
parent
792f665524
commit
aed64e814f
2 changed files with 11 additions and 7 deletions
17
.travis.yml
17
.travis.yml
|
@ -2,6 +2,9 @@ sudo: false
|
|||
|
||||
language: php
|
||||
|
||||
services:
|
||||
- mysql
|
||||
|
||||
env:
|
||||
global:
|
||||
- typo3DatabaseHost=localhost typo3DatabaseName=typo3 typo3DatabaseUsername=travis typo3DatabasePassword=''
|
||||
|
@ -47,26 +50,26 @@ script:
|
|||
jobs:
|
||||
include:
|
||||
- stage: test
|
||||
php: 7.2
|
||||
php: "7.2"
|
||||
env: TYPO3=^8.7
|
||||
- stage: test
|
||||
php: 7.1
|
||||
php: "7.1"
|
||||
env: TYPO3=^8.7
|
||||
- stage: test
|
||||
php: 7.0
|
||||
php: "7.0"
|
||||
env: TYPO3=^8.7
|
||||
- stage: test
|
||||
php: 7.2
|
||||
php: "7.2"
|
||||
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||
- stage: test
|
||||
php: 7.1
|
||||
php: "7.1"
|
||||
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||
- stage: test
|
||||
php: 7.0
|
||||
php: "7.0"
|
||||
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||
- stage: release to ter
|
||||
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
|
||||
php: 7.0
|
||||
php: "7.0"
|
||||
before_install: skip
|
||||
install: skip
|
||||
before_script: skip
|
||||
|
|
|
@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
### Removed
|
||||
|
||||
### Fixed
|
||||
- Explicitly require MySQL on Travis CI (#38)
|
||||
- Add .php_cs.cache to the .gitignore (#33)
|
||||
|
||||
## 2.0.0
|
||||
|
|
Loading…
Reference in a new issue