update tasks
This commit is contained in:
parent
2c186f813c
commit
affa99c877
@ -12,6 +12,9 @@ spec:
|
||||
- name: revision
|
||||
type: string
|
||||
description: The git repo branch to checkout.
|
||||
- name: destination
|
||||
type: string
|
||||
description: The git repo branch to merge to.
|
||||
- name: image
|
||||
type: string
|
||||
description: Full name of image repo.
|
||||
@ -40,6 +43,9 @@ spec:
|
||||
value: $(params.revision)
|
||||
- name: submodules
|
||||
value: 'false'
|
||||
- name: depth
|
||||
value: '50'
|
||||
|
||||
# Lecture du readme du projet
|
||||
- name: show-readme
|
||||
runAfter: ["fetch-source"]
|
||||
@ -74,6 +80,9 @@ spec:
|
||||
workspace: shared-data
|
||||
- name: config
|
||||
workspace: config
|
||||
params:
|
||||
- name: destination
|
||||
value: $(params.destination)
|
||||
|
||||
# Execution des tests unitaires avec une BDD en sidecar
|
||||
- name: php-unit-test
|
||||
|
@ -7,6 +7,9 @@ spec:
|
||||
workspaces:
|
||||
- name: source
|
||||
- name: config
|
||||
params:
|
||||
- name: destination
|
||||
default: develop
|
||||
steps:
|
||||
- name: exec
|
||||
image: ghcr.io/php-cs-fixer/php-cs-fixer:3-php8.3
|
||||
@ -16,4 +19,10 @@ spec:
|
||||
- '-c'
|
||||
- |
|
||||
set -ex
|
||||
php-cs-fixer fix --dry-run --config=$(workspaces.config.path)/php-cs-fixer.dist.php $(workspaces.source.path)
|
||||
apk add git
|
||||
cd $(workspaces.source.path)
|
||||
git config --global --add safe.directory /workspace/source
|
||||
git fetch origin $(params.destination)
|
||||
CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB origin/$(params.destination) -- | grep -F ".php" | tr "\n" " ")
|
||||
if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php-cs-fixer(\\.dist)\\.php?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection -- %s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi
|
||||
php-cs-fixer fix --dry-run --config=$(workspaces.config.path)/php-cs-fixer.dist.php ${EXTRA_ARGS}
|
||||
|
@ -23,6 +23,7 @@ spec:
|
||||
- /app/vendor/phpstan/phpstan-doctrine/extension.neon
|
||||
- /app/vendor/phpstan/phpstan-doctrine/rules.neon
|
||||
EOF
|
||||
phpstan analyse -l 1 --error-format=table $(workspaces.source.path)
|
||||
cd $(workspaces.source.path)
|
||||
php $(which phpstan) analyse -l 1 --error-format=table src/
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user