mse-tekton/kustomization/base/tekton/pipeline/pipeline-symfonyapp.yaml

134 lines
3.0 KiB
YAML
Raw Normal View History

2024-01-25 16:41:44 +01:00
apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
name: symfonyapp
spec:
description: |
This pipeline clones a git repo, then echoes the README file to the stout.
params:
- name: repo-url
type: string
description: The git repo URL to clone from.
2024-01-29 14:49:38 +01:00
- name: revision
type: string
description: The git repo branch to checkout.
2024-01-30 12:52:38 +01:00
- name: destination
type: string
description: The git repo branch to merge to.
2024-03-07 15:53:03 +01:00
# - name: image
# type: string
# description: Full name of image repo.
# - name: dockerfile
# type: string
# description: 'The path to the Dockerfile to execute (default: ./Dockerfile)'
2024-01-25 16:41:44 +01:00
workspaces:
- name: shared-data
description: |
This workspace contains the cloned repo files, so they can be read by the
next task.
- name: config
- name: docker-credentials
2024-03-07 15:53:03 +01:00
2024-01-25 16:41:44 +01:00
tasks:
2024-03-07 15:53:03 +01:00
# 📥 Clone du repo git
2024-01-25 16:41:44 +01:00
- name: fetch-source
taskRef:
name: git-clone
workspaces:
- name: output
workspace: shared-data
params:
- name: url
value: $(params.repo-url)
2024-01-29 14:49:38 +01:00
- name: revision
value: $(params.revision)
- name: submodules
value: 'false'
2024-01-30 12:52:38 +01:00
- name: depth
value: '50'
2024-03-07 15:53:03 +01:00
# ⭐ Lecture du readme du projet
2024-01-25 16:41:44 +01:00
- name: show-readme
runAfter: ["fetch-source"]
taskRef:
name: show-readme
workspaces:
- name: source
workspace: shared-data
2024-03-07 15:53:03 +01:00
# ⭐ Execution des tests php-security-check
2024-01-25 16:41:44 +01:00
- name: php-security-check
runAfter: ["fetch-source"]
taskRef:
name: php-security-check
workspaces:
- name: source
workspace: shared-data
2024-03-07 15:53:03 +01:00
# ⭐ Execution des tests phpstan
2024-01-25 16:41:44 +01:00
- name: phpstan
runAfter: ["fetch-source"]
taskRef:
name: phpstan
workspaces:
- name: source
workspace: shared-data
2024-03-07 15:53:03 +01:00
# ⭐ Execution des tests php-cs-fixer
2024-01-25 16:41:44 +01:00
- name: php-cs-fixer
runAfter: ["fetch-source"]
taskRef:
name: php-cs-fixer
workspaces:
- name: source
workspace: shared-data
- name: config
workspace: config
2024-01-30 12:52:38 +01:00
params:
- name: destination
value: $(params.destination)
2024-01-25 16:41:44 +01:00
2024-03-07 15:53:03 +01:00
# ⭐ Execution des tests unitaires avec une BDD en sidecar
2024-01-29 14:49:38 +01:00
- name: php-unit-test
2024-01-25 16:41:44 +01:00
runAfter:
- fetch-source
# - php-cs-fixer
# - phpstan
# - php-security-check
2024-01-29 14:49:38 +01:00
taskRef:
name: php-unit-test
workspaces:
- name: source
workspace: shared-data
2024-03-07 15:53:03 +01:00
## 🔨 Build de l'image
2024-01-29 14:49:38 +01:00
# - name: kaniko-build
# taskRef:
# name: kaniko
# params:
# - name: IMAGE
# value: $(params.image)
# - name: DOCKERFILE
# value: $(params.dockerfile)
# - name: BUILDER_IMAGE
# value: gcr.io/kaniko-project/executor:v1.20.0
# - name: EXTRA_ARGS
# value:
# - --skip-tls-verify
# - --insecure
# - --ignore-path=/product_uuid
# workspaces:
# - name: source
# workspace: shared-data
# - name: dockerconfig
# workspace: docker-credentials
# runAfter:
2024-03-07 15:53:03 +01:00
# - php-unit-test
2024-01-29 14:49:38 +01:00
# retries: 3
2024-01-25 16:41:44 +01:00