From 08684ef636676f5509c9a230ab6b48e76c64c896 Mon Sep 17 00:00:00 2001 From: vcarroy Date: Tue, 2 Apr 2024 09:49:28 +0200 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20mise=20=C3=A0=20jour=20task=20phpst?= =?UTF-8?q?an=20avec=20baseline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../base/tekton/task/symfonyapp/phpstan.yaml | 41 ++++--------------- 1 file changed, 9 insertions(+), 32 deletions(-) diff --git a/kustomization/base/tekton/task/symfonyapp/phpstan.yaml b/kustomization/base/tekton/task/symfonyapp/phpstan.yaml index 99756d6..0f25456 100644 --- a/kustomization/base/tekton/task/symfonyapp/phpstan.yaml +++ b/kustomization/base/tekton/task/symfonyapp/phpstan.yaml @@ -3,41 +3,18 @@ kind: Task metadata: name: phpstan spec: - description: PHP-CS-Fixer on modified code + description: Phpstan on modified code workspaces: - name: source params: - name: apiurl - name: requestid steps: - - name: exec - image: ghcr.io/phpstan/phpstan:1 - command: - - /bin/sh - args: - - '-c' - - | - #set -e - - echo "" - echo "== INSTALL PHPSTAN =======================================" - composer require phpstan/phpstan-symfony - composer require phpstan/phpstan-doctrine - - cat << EOF > /app/phpstan.neon - includes: - - /app/vendor/phpstan/phpstan-symfony/extension.neon - - /app/vendor/phpstan/phpstan-doctrine/extension.neon - - /app/vendor/phpstan/phpstan-doctrine/rules.neon - EOF - - echo "" - echo "== RUN PHPSTAN ===========================================" - cd $(workspaces.source.path) - php $(which phpstan) analyse -l 1 --error-format=table src/ > temp_phpstan.txt - RESULT=$(cat temp_phpstan.txt) - echo "${RESULT}" - - echo "" - echo "" - + - name: analyse + image: reg.cadoles.com/cnous-mse/phpstan + script: | + #!/bin/sh + echo "== RUN PHPSTAN ===========================================" + cd $(workspaces.source.path) + phpstan analyse -l 5 --configuration phpstan-pipeline.neon --error-format table --no-progress > temp_phpstan.txt 2>&1 + cat temp_phpstan.txt -- 2.17.1 From d84c035a40d7fb308d587839098c0cc70df662c6 Mon Sep 17 00:00:00 2001 From: afornerot Date: Mon, 8 Apr 2024 14:27:16 +0200 Subject: [PATCH 2/2] deplacement image phpstan sur orga cadoles --- Makefile | 6 ++++++ kustomization/base/tekton/task/symfonyapp/phpstan.yaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 76daf6c..476311d 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,12 @@ deploy-dev: ## Déploie le projet dans le cluster (nécessite la variable $HARBO delete-cluster: ## Supprime le cluster kubernetes Kind kind delete clusters tekton +docker-secret: + cp kustomization/base/tekton/secret/gitea/access_token.dist kustomization/base/tekton/secret/gitea/access_token + cp kustomization/base/tekton/secret/gitea/basicauth.dist kustomization/base/tekton/secret/gitea/basicauth + cp kustomization/base/tekton/secret/ssh/id_ed25519.dist kustomization/base/tekton/secret/ssh/id_ed25519 + cp kustomization/base/tekton/secret/ssh/known_hosts.dist kustomization/base/tekton/secret/ssh/known_hosts + .mktools: rm -rf .mktools curl -q https://forge.cadoles.com/Cadoles/mktools/raw/branch/master/install.sh | $(SHELL) diff --git a/kustomization/base/tekton/task/symfonyapp/phpstan.yaml b/kustomization/base/tekton/task/symfonyapp/phpstan.yaml index 0f25456..3433b05 100644 --- a/kustomization/base/tekton/task/symfonyapp/phpstan.yaml +++ b/kustomization/base/tekton/task/symfonyapp/phpstan.yaml @@ -11,7 +11,7 @@ spec: - name: requestid steps: - name: analyse - image: reg.cadoles.com/cnous-mse/phpstan + image: reg.cadoles.com/cadoles/phpstan script: | #!/bin/sh echo "== RUN PHPSTAN ===========================================" -- 2.17.1