charts/pipelines-library/templates/pipelines/python/ansible/bitbucket-build-lib-edp.yaml (72 lines of code) (raw):
{{ if has "bitbucket" .Values.global.gitProviders }}
{{ if .Values.pipelines.deployableResources.python.ansible }}
apiVersion: tekton.dev/v1
kind: Pipeline
metadata:
name: bitbucket-python-ansible-lib-build-edp
labels:
app.edp.epam.com/pipelinetype: build
{{- include "edp-tekton.labels" . | nindent 4 }}
spec:
description: "The Build pipeline for building Ansible library (EDP versioning)"
workspaces:
- name: shared-workspace
- name: ssh-creds
params:
- name: pipelineUrl
default: https://portal-{{ .Release.Namespace }}.{{ .Values.global.dnsWildCard }}/c/main/pipelines/$(context.pipelineRun.namespace)/$(context.pipelineRun.name)
type: string
- name: git-source-url
default: "https://github.com/epmd-edp/python-python-ansible"
description: git url to clone
type: string
- name: git-source-revision
description: 'git revision to checkout (branch, tag, sha, ref…)'
default: "master"
type: string
- name: CODEBASE_NAME
default: 'ansible'
description: "Project name"
type: string
- name: CODEBASEBRANCH_NAME
description: "Codebasebranch name"
type: string
- name: changeNumber
description: Change number from Merge Request
default: ""
type: string
- name: gitfullrepositoryname
description: "repository full name"
type: string
- name: TICKET_NAME_PATTERN
description: "Ticket name pattern"
default: ""
- name: COMMIT_MESSAGE_PATTERN
description: "Pattern to validate a commit message"
default: ""
- name: COMMIT_MESSAGE
description: "Commit message"
default: ""
- name: JIRA_ISSUE_METADATA_PAYLOAD
description: "Jira Payload"
default: ""
- name: JIRA_SERVER
description: "Jira server name"
default: ""
{{- include "build-result" . | nindent 2 }}
tasks:
{{- include "bitbucket-build-start" . | nindent 4 }}
- name: get-version
taskRef:
kind: Task
name: get-version-edp
runAfter:
- init-values
params:
- name: CODEBASEBRANCH_NAME
value: $(params.CODEBASEBRANCH_NAME)
{{- include "ansible-check-build-common" . | nindent 4 }}
{{ include "finally-block-edp" . | nindent 2 }}
{{ include "bitbucket-build-vote" . | nindent 4 }}
{{ end }}
{{ end }}