Adding testing and code-style pipelines
This commit is contained in:
parent
ab6ef4ba48
commit
8492f2f926
2 changed files with 53 additions and 0 deletions
7
.woodpecker/code-style.yml
Normal file
7
.woodpecker/code-style.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
pipeline:
|
||||
code-style:
|
||||
image: composer
|
||||
commands:
|
||||
- composer global config repositories.repo-name vcs https://git.digital-competence.de/Packages/php-codesniffer
|
||||
- composer global require digicomp/php-codesniffer:@dev
|
||||
- composer global exec -- phpcs --runtime-set ignore_warnings_on_exit 1 --standard=DigiComp Classes/ Migrations/ Tests/ Resources/Private/
|
46
.woodpecker/test.yml
Normal file
46
.woodpecker/test.yml
Normal file
|
@ -0,0 +1,46 @@
|
|||
workspace:
|
||||
base: /woodpecker
|
||||
path: package
|
||||
|
||||
matrix:
|
||||
FLOW_VERSION:
|
||||
- 4.3
|
||||
- 5.3
|
||||
|
||||
pipeline:
|
||||
functional-tests:
|
||||
image: thecodingmachine/php:7.4-v4-cli
|
||||
environment:
|
||||
# Enable the PDO_SQLITE extension
|
||||
- "PHP_EXTENSION_PDO_SQLITE=1"
|
||||
- "FLOW_VERSION=${FLOW_VERSION}"
|
||||
- "NEOS_BUILD_DIR=/woodpecker/Build-${FLOW_VERSION}"
|
||||
commands:
|
||||
- "sudo mkdir $NEOS_BUILD_DIR"
|
||||
- "sudo chown -R docker:docker $NEOS_BUILD_DIR"
|
||||
- "cd $NEOS_BUILD_DIR"
|
||||
- "if [ \"$FLOW_VERSION\" = \"4.3\" ]; then sudo composer self-update --1; fi"
|
||||
- "composer create-project --no-install neos/flow-base-distribution:^$FLOW_VERSION ."
|
||||
- "composer config repositories.repo-name path /woodpecker/package"
|
||||
- "composer remove --dev neos/behat"
|
||||
- "if [ \"$FLOW_VERSION\" = \"4.3\" ]; then composer require typo3fluid/fluid:2.4.3; fi"
|
||||
- "composer require digicomp/sequence:@dev"
|
||||
- |
|
||||
if [ "$FLOW_VERSION" = "4.3" ]; then
|
||||
echo 'Neos:
|
||||
Flow:
|
||||
persistence:
|
||||
backendOptions:
|
||||
dbname: "flow_functional_testing"
|
||||
error:
|
||||
errorHandler:
|
||||
exceptionalErrors:
|
||||
0: "%E_USER_ERROR%"
|
||||
1: "%E_RECOVERABLE_ERROR%"
|
||||
2: ~
|
||||
3: "%E_NOTICE%"
|
||||
4: "%E_USER_WARNING%"
|
||||
5: "%E_USER_NOTICE%"
|
||||
6: "%E_STRICT%"' > Configuration/Testing/Settings.yaml
|
||||
fi
|
||||
- "bin/phpunit --configuration Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/DigiComp.Sequence/Tests/Functional"
|
Loading…
Reference in a new issue