98 lines
2.2 KiB
YAML
98 lines
2.2 KiB
YAML
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.
|
|
- name: image
|
|
type: string
|
|
description: Full name of image repo.
|
|
- name: dockerfile
|
|
type: string
|
|
description: 'The path to the Dockerfile to execute (default: ./Dockerfile)'
|
|
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
|
|
tasks:
|
|
# Clone du repo git
|
|
- name: fetch-source
|
|
taskRef:
|
|
name: git-clone
|
|
workspaces:
|
|
- name: output
|
|
workspace: shared-data
|
|
params:
|
|
- name: url
|
|
value: $(params.repo-url)
|
|
# Lecture du readme du projet
|
|
- name: show-readme
|
|
runAfter: ["fetch-source"]
|
|
taskRef:
|
|
name: show-readme
|
|
workspaces:
|
|
- name: source
|
|
workspace: shared-data
|
|
# Execution des tests php-security-check
|
|
- name: php-security-check
|
|
runAfter: ["fetch-source"]
|
|
taskRef:
|
|
name: php-security-check
|
|
workspaces:
|
|
- name: source
|
|
workspace: shared-data
|
|
# Execution des tests phpstan
|
|
- name: phpstan
|
|
runAfter: ["fetch-source"]
|
|
taskRef:
|
|
name: phpstan
|
|
workspaces:
|
|
- name: source
|
|
workspace: shared-data
|
|
# Execution des tests php-cs-fixer
|
|
- name: php-cs-fixer
|
|
runAfter: ["fetch-source"]
|
|
taskRef:
|
|
name: php-cs-fixer
|
|
workspaces:
|
|
- name: source
|
|
workspace: shared-data
|
|
- name: config
|
|
workspace: config
|
|
|
|
- name: kaniko-build
|
|
taskRef:
|
|
name: kaniko
|
|
params:
|
|
- name: IMAGE
|
|
value: $(params.image)
|
|
- name: DOCKERFILE
|
|
value: $(params.dockerfile)
|
|
- name: EXTRA_ARGS
|
|
value:
|
|
- --skip-tls-verify
|
|
- --insecure
|
|
workspaces:
|
|
- name: source
|
|
workspace: shared-data
|
|
- name: dockerconfig
|
|
workspace: docker-credentials
|
|
runAfter:
|
|
- fetch-source
|
|
# - php-cs-fixer
|
|
# - phpstan
|
|
# - php-security-check
|
|
retries: 3
|
|
|
|
#
|
|
|
|
|