Skip to content
Snippets Groups Projects
Commit 11193ae9 authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

[FEATURE] Initialized gitlab continious integration

parent 5775e0aa
No related merge requests found
cache:
paths:
- .composer/
stages:
- lint
- test
variables:
COMPOSER_CACHE_DIR: ".composer"
COMPOSER_PROCESS_TIMEOUT: "1800"
COMPOSER_ALLOW_SUPERUSER: "1"
TYPO3_VERSION: ^8.7
.lint: &lint
image: composer
stage: test
before_script:
- apk --no-cache add parallel
- composer --no-ansi self-update
- composer --no-ansi --version
- composer require --no-interaction --no-ansi typo3/cms="${TYPO3_VERSION}"
- composer install --no-interaction --no-ansi
lint:
<<: *lint
script:
- find . -name \*.php ! -path "./.Build/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;
......@@ -37,6 +37,10 @@
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment