mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-11 03:16:12 +01:00
37 lines
552 B
YAML
37 lines
552 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
|
|
env:
|
|
matrix:
|
|
- TYPO3_VERSION="~6.2"
|
|
- TYPO3_VERSION="~7.6"
|
|
- TYPO3_VERSION="dev-master"
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- env: TYPO3_VERSION="~6.2"
|
|
php: 7.0
|
|
- env: TYPO3_VERSION="dev-master"
|
|
php: 7.0
|
|
exclude:
|
|
# TYPO3 no longer supports 5.6
|
|
- env: TYPO3_VERSION="dev-master"
|
|
php: 5.6
|
|
|
|
before_install:
|
|
- composer self-update
|
|
- composer --version
|
|
|
|
install:
|
|
- make install
|
|
|
|
script:
|
|
- make Tests
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|