mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 17:36:11 +01:00
TASK: Allow PHP7 tests to run
* Ignore platform-reqs of composer to allow installation of TYPO3 CMS 6.x with newer PHP Versions. * Don't make 6.2 version fix.
This commit is contained in:
parent
2a1d4f34e4
commit
0ff8ffed84
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -3,7 +3,7 @@ current_dir := $(dir $(mkfile_path))
|
||||||
|
|
||||||
TYPO3_WEB_DIR := $(current_dir).Build/Web
|
TYPO3_WEB_DIR := $(current_dir).Build/Web
|
||||||
# Allow different versions on travis
|
# Allow different versions on travis
|
||||||
TYPO3_VERSION ?= ~6.2.19
|
TYPO3_VERSION ?= ~6.2
|
||||||
typo3DatabaseName ?= "searchcore_test"
|
typo3DatabaseName ?= "searchcore_test"
|
||||||
typo3DatabaseUsername ?= "dev"
|
typo3DatabaseUsername ?= "dev"
|
||||||
typo3DatabasePassword ?= "dev"
|
typo3DatabasePassword ?= "dev"
|
||||||
|
@ -11,7 +11,7 @@ typo3DatabaseHost ?= "127.0.0.1"
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: clean
|
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
|
git checkout composer.json
|
||||||
|
|
||||||
functionalTests:
|
functionalTests:
|
||||||
|
|
Loading…
Reference in a new issue