Merge branch 'feature/flow-8.2' into develop
This commit is contained in:
commit
cdded1c1e2
3 changed files with 14 additions and 6 deletions
|
@ -3,5 +3,6 @@ pipeline:
|
||||||
image: composer
|
image: composer
|
||||||
commands:
|
commands:
|
||||||
- composer global config repositories.repo-name vcs https://git.digital-competence.de/Packages/php-codesniffer
|
- composer global config repositories.repo-name vcs https://git.digital-competence.de/Packages/php-codesniffer
|
||||||
|
- composer global config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true
|
||||||
- composer global require digicomp/php-codesniffer:@dev
|
- composer global require digicomp/php-codesniffer:@dev
|
||||||
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Migrations/ Tests/
|
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Tests/
|
||||||
|
|
|
@ -3,12 +3,19 @@ workspace:
|
||||||
path: package
|
path: package
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
FLOW_VERSION:
|
include:
|
||||||
- 6.3
|
- FLOW_VERSION: 6.3
|
||||||
|
PHP_VERSION: 7.4
|
||||||
|
- FLOW_VERSION: 7.3
|
||||||
|
PHP_VERSION: 7.4
|
||||||
|
- FLOW_VERSION: 7.3
|
||||||
|
PHP_VERSION: 8.2
|
||||||
|
- FLOW_VERSION: 8.2
|
||||||
|
PHP_VERSION: 8.2
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
functional-tests:
|
functional-tests:
|
||||||
image: thecodingmachine/php:7.4-v4-cli
|
image: "thecodingmachine/php:${PHP_VERSION}-v4-cli"
|
||||||
environment:
|
environment:
|
||||||
# Enable the PDO_SQLITE extension
|
# Enable the PDO_SQLITE extension
|
||||||
- "PHP_EXTENSION_PDO_SQLITE=1"
|
- "PHP_EXTENSION_PDO_SQLITE=1"
|
||||||
|
@ -20,6 +27,6 @@ pipeline:
|
||||||
- "cd $NEOS_BUILD_DIR"
|
- "cd $NEOS_BUILD_DIR"
|
||||||
- "composer create-project --no-install neos/flow-base-distribution:^$FLOW_VERSION ."
|
- "composer create-project --no-install neos/flow-base-distribution:^$FLOW_VERSION ."
|
||||||
- "composer config repositories.repo-name path /woodpecker/package"
|
- "composer config repositories.repo-name path /woodpecker/package"
|
||||||
- "composer remove --dev neos/behat"
|
- "composer remove --dev --no-update neos/behat || composer remove --no-update neos/behat"
|
||||||
- "composer require digicomp/sequence:@dev"
|
- "composer require digicomp/sequence:@dev"
|
||||||
- "bin/phpunit --configuration Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/DigiComp.Sequence/Tests/Functional"
|
- "bin/phpunit --configuration Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/DigiComp.Sequence/Tests/Functional"
|
|
@ -4,7 +4,7 @@
|
||||||
"type": "neos-package",
|
"type": "neos-package",
|
||||||
"require": {
|
"require": {
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"neos/flow": "^6.3.5",
|
"neos/flow": "^6.3.5 | ^7.0 | ^8.0",
|
||||||
"php": ">=7.4"
|
"php": ">=7.4"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
|
Loading…
Reference in a new issue