mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 15:36:12 +01:00
Merge pull request #45 from DanielSiepmann/feature/support-php7
Feature/support php7
This commit is contained in:
commit
7877c36a77
2 changed files with 2 additions and 8 deletions
|
@ -31,12 +31,6 @@ matrix:
|
|||
php: 5.6
|
||||
- env: TYPO3_VERSION="dev-master"
|
||||
php: 5.6
|
||||
# There is some error with 6.2 and 7 not finding the "UnitTestsBootstrap.php"
|
||||
# See: https://github.com/DanielSiepmann/search_core/issues/4
|
||||
- env: TYPO3_VERSION="~6.2"
|
||||
php: 7.0
|
||||
- env: TYPO3_VERSION="~6.2"
|
||||
php: 7.1
|
||||
allow_failures:
|
||||
# 7 and 8 are not working due to current relation resolving.
|
||||
# See: https://github.com/DanielSiepmann/search_core/projects/1
|
||||
|
|
4
Makefile
4
Makefile
|
@ -3,7 +3,7 @@ current_dir := $(dir $(mkfile_path))
|
|||
|
||||
TYPO3_WEB_DIR := $(current_dir).Build/Web
|
||||
# Allow different versions on travis
|
||||
TYPO3_VERSION ?= ~6.2.19
|
||||
TYPO3_VERSION ?= ~6.2
|
||||
typo3DatabaseName ?= "searchcore_test"
|
||||
typo3DatabaseUsername ?= "dev"
|
||||
typo3DatabasePassword ?= "dev"
|
||||
|
@ -11,7 +11,7 @@ typo3DatabaseHost ?= "127.0.0.1"
|
|||
|
||||
.PHONY: install
|
||||
install: clean
|
||||
COMPOSER_PROCESS_TIMEOUT=1000 composer require -vv --dev --prefer-source typo3/cms="$(TYPO3_VERSION)"
|
||||
COMPOSER_PROCESS_TIMEOUT=1000 composer require -vv --dev --prefer-source --ignore-platform-reqs typo3/cms="$(TYPO3_VERSION)"
|
||||
git checkout composer.json
|
||||
|
||||
functionalTests:
|
||||
|
|
Loading…
Reference in a new issue