File tree Expand file tree Collapse file tree 2 files changed +40
-2
lines changed Expand file tree Collapse file tree 2 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,13 @@ metadata:
9
9
pipelinesascode.tekton.dev/cancel-in-progress : " true"
10
10
pipelinesascode.tekton.dev/max-keep-runs : " 3"
11
11
pipelinesascode.tekton.dev/on-cel-expression : event == "pull_request" && target_branch
12
- == "release-v1.5.x"
12
+ == "release-v1.5.x" &&
13
+ (
14
+ " .tekton/rhtap-task-runner-1-5-pull-request.yaml" .pathChanged() ||
15
+ " Dockerfile" .pathChanged() ||
16
+ " rhtap/***" .pathChanged() ||
17
+ " tools/***" .pathChanged()
18
+ )
13
19
creationTimestamp : null
14
20
labels :
15
21
appstudio.openshift.io/application : rhtap-task-runner-1-5
31
37
value : Dockerfile
32
38
- name : path-context
33
39
value : .
40
+ - name : hermetic
41
+ value : " true"
42
+ - name : prefetch-input
43
+ value : |
44
+ [
45
+ {"type": "gomod", "path": "tools/syft"},
46
+ {"type": "gomod", "path": "tools/yq"},
47
+ {"type": "rpm", "path": "tools/rpm-manifests"}
48
+ ]
49
+ - name : build-source-image
50
+ value : " true"
34
51
pipelineSpec :
35
52
description : |
36
53
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
@@ -172,6 +189,8 @@ spec:
172
189
params :
173
190
- name : input
174
191
value : $(params.prefetch-input)
192
+ - name : dev-package-managers
193
+ value : " true"
175
194
- name : SOURCE_ARTIFACT
176
195
value : $(tasks.clone-repository.results.SOURCE_ARTIFACT)
177
196
- name : ociStorage
Original file line number Diff line number Diff line change @@ -8,7 +8,13 @@ metadata:
8
8
pipelinesascode.tekton.dev/cancel-in-progress : " false"
9
9
pipelinesascode.tekton.dev/max-keep-runs : " 3"
10
10
pipelinesascode.tekton.dev/on-cel-expression : event == "push" && target_branch
11
- == "release-v1.5.x"
11
+ == "release-v1.5.x" &&
12
+ (
13
+ " .tekton/rhtap-task-runner-1-5-push.yaml" .pathChanged() ||
14
+ " Dockerfile" .pathChanged() ||
15
+ " rhtap/***" .pathChanged() ||
16
+ " tools/***" .pathChanged()
17
+ )
12
18
creationTimestamp : null
13
19
labels :
14
20
appstudio.openshift.io/application : rhtap-task-runner-1-5
28
34
value : Dockerfile
29
35
- name : path-context
30
36
value : .
37
+ - name : hermetic
38
+ value : " true"
39
+ - name : prefetch-input
40
+ value : |
41
+ [
42
+ {"type": "gomod", "path": "tools/syft"},
43
+ {"type": "gomod", "path": "tools/yq"},
44
+ {"type": "rpm", "path": "tools/rpm-manifests"}
45
+ ]
46
+ - name : build-source-image
47
+ value : " true"
31
48
pipelineSpec :
32
49
description : |
33
50
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
@@ -169,6 +186,8 @@ spec:
169
186
params :
170
187
- name : input
171
188
value : $(params.prefetch-input)
189
+ - name : dev-package-managers
190
+ value : " true"
172
191
- name : SOURCE_ARTIFACT
173
192
value : $(tasks.clone-repository.results.SOURCE_ARTIFACT)
174
193
- name : ociStorage
You can’t perform that action at this time.
0 commit comments