-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipelinerun.yaml
40 lines (39 loc) · 941 Bytes
/
pipelinerun.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
name: maven-proj
spec:
resources:
- name: pipeline-git
resourceSpec:
type: git
params:
- name: revision
value: master
- name: url
value: https://github.com/jenkins-docs/simple-java-maven-app.git
pipelineSpec:
resources:
- name: pipeline-git
type: git
tasks:
- name: build
resources:
inputs:
- name: source
resource: pipeline-git
taskSpec:
resources:
inputs:
- name: source
type: git
steps:
- name: build-step
image: maven:3-alpine
workingDir: $(resources.inputs.source.path)
command:
- mvn
- -B
- -DskipTests
- clean
- package