diff --git a/kustomization/base/tekton/pipeline/pipeline-symfonyapp.yaml b/kustomization/base/tekton/pipeline/pipeline-symfonyapp.yaml index 3fdfdf0..d44e3fe 100644 --- a/kustomization/base/tekton/pipeline/pipeline-symfonyapp.yaml +++ b/kustomization/base/tekton/pipeline/pipeline-symfonyapp.yaml @@ -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 diff --git a/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml b/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml index 061d882..be5ba69 100644 --- a/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml +++ b/kustomization/base/tekton/task/symfonyapp/task/php-cs-fixer.yaml @@ -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} diff --git a/kustomization/base/tekton/task/symfonyapp/task/phpstan.yaml b/kustomization/base/tekton/task/symfonyapp/task/phpstan.yaml index 65f68d6..11394f3 100644 --- a/kustomization/base/tekton/task/symfonyapp/task/phpstan.yaml +++ b/kustomization/base/tekton/task/symfonyapp/task/phpstan.yaml @@ -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/