codefresh 0.84.10 → 0.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/codefresh-arm.yml DELETED
@@ -1,253 +0,0 @@
1
- version: "1.0"
2
- mode: parallel
3
- stages:
4
- - prepare
5
- - build
6
- - push-dev
7
- - push-master
8
- steps:
9
- main_clone:
10
- stage: prepare
11
- title: 'Cloning main repository...'
12
- type: git-clone
13
- repo: ${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}
14
- revision: ${{CF_REVISION}}
15
- git: ${{GIT_CONTEXT}}
16
-
17
- build_image:
18
- stage: build
19
- type: parallel
20
- steps:
21
-
22
- build_image_alpine:
23
- title: "Building the alpine image..."
24
- type: build
25
- working_directory: ${{WORKDIR}}
26
- disable_push: true
27
- dockerfile: ./Dockerfile
28
- image_name: ${{IMAGE_NAME}}
29
- tag: ${{CF_SHORT_REVISION}}
30
-
31
- build_image_debian:
32
- title: "Building the debian image..."
33
- type: build
34
- working_directory: ${{WORKDIR}}
35
- disable_push: true
36
- dockerfile: ./Dockerfile-debian
37
- image_name: ${{IMAGE_NAME}}
38
- tag: ${{CF_SHORT_REVISION}}${{DEBIAN_TAG_POSTFIX}}
39
-
40
- build_image_alpine_rootless:
41
- title: "Building the alpine image..."
42
- type: build
43
- working_directory: ${{WORKDIR}}
44
- disable_push: true
45
- dockerfile: ./Dockerfile-rootless
46
- image_name: ${{IMAGE_NAME}}
47
- tag: ${{CF_SHORT_REVISION}}${{ROOTLESS_TAG_POSTFIX}}
48
-
49
- build_image_debian_rootless:
50
- title: "Building the debian image..."
51
- type: build
52
- working_directory: ${{WORKDIR}}
53
- disable_push: true
54
- dockerfile: ./Dockerfile-debian-rootless
55
- image_name: ${{IMAGE_NAME}}
56
- tag: ${{CF_SHORT_REVISION}}${{DEBIAN_TAG_POSTFIX}}${{ROOTLESS_TAG_POSTFIX}}
57
- when:
58
- steps:
59
- - name: main_clone
60
- on:
61
- - success
62
-
63
- push_dev_alpine:
64
- stage: push-dev
65
- type: push
66
- candidate: ${{build_image_alpine}}
67
- title: "Pushing alpine image to registry with revision tag"
68
- tag: ${{CF_SHORT_REVISION}}${{ARM_TAG_POSTFIX}}
69
- scale:
70
- push_quay_dev:
71
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
72
- title: "Pushing image to quay.io registry with revision tag"
73
- push_dockerhub_dev:
74
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
75
- title: "Pushing image to dockerhub registry with revision tag"
76
- push_gcr_enterprise_dev:
77
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
78
- title: "Pushing image to gcr.io registry with revision tag"
79
- when:
80
- steps:
81
- - name: build_image
82
- on:
83
- - success
84
-
85
- push_dev_debian:
86
- stage: push-dev
87
- type: push
88
- candidate: ${{build_image_debian}}
89
- title: "Pushing debian image to registry with revision tag"
90
- tag: ${{CF_SHORT_REVISION}}${{DEBIAN_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}
91
- scale:
92
- push_quay_dev_debian:
93
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
94
- title: "Pushing image to quay.io registry with revision tag"
95
- push_dockerhub_dev_debian:
96
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
97
- title: "Pushing image to dockerhub registry with revision tag"
98
- push_gcr_enterprise_dev_debian:
99
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
100
- title: "Pushing image to gcr.io registry with revision tag"
101
- when:
102
- steps:
103
- - name: build_image
104
- on:
105
- - success
106
-
107
- push_dev_alpine_rootless:
108
- stage: push-dev
109
- type: push
110
- candidate: ${{build_image_alpine_rootless}}
111
- title: "Pushing rootless alpine image to registry with revision tag"
112
- tag: ${{CF_SHORT_REVISION}}${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}
113
- scale:
114
- push_quay_dev_rootless:
115
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
116
- title: "Pushing image to quay.io registry with revision tag"
117
- push_dockerhub_dev_rootless:
118
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
119
- title: "Pushing image to dockerhub registry with revision tag"
120
- push_gcr_enterprise_dev_rootless:
121
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
122
- title: "Pushing image to gcr.io registry with revision tag"
123
- when:
124
- steps:
125
- - name: build_image
126
- on:
127
- - success
128
-
129
- push_dev_debian_rootless:
130
- stage: push-dev
131
- type: push
132
- candidate: ${{build_image_debian_rootless}}
133
- title: "Pushing rootless debian image to registry with revision tag"
134
- tag: ${{CF_SHORT_REVISION}}${{DEBIAN_TAG_POSTFIX}}${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}
135
- scale:
136
- push_quay_dev_debian_rootless:
137
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
138
- title: "Pushing image to quay.io registry with revision tag"
139
- push_dockerhub_dev_debian_rootless:
140
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
141
- title: "Pushing image to dockerhub registry with revision tag"
142
- push_gcr_enterprise_dev_debian_rootless:
143
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
144
- title: "Pushing image to gcr.io registry with revision tag"
145
- when:
146
- steps:
147
- - name: build_image
148
- on:
149
- - success
150
-
151
- push_master_alpine:
152
- stage: push-master
153
- type: push
154
- candidate: ${{build_image_alpine}}
155
- title: "Pushing alpine image with release tag"
156
- when:
157
- branch:
158
- only: [ master ]
159
- steps:
160
- - name: build_image
161
- on:
162
- - success
163
- tags:
164
- - "${{PACKAGE_VERSION}}${{ARM_TAG_POSTFIX}}"
165
- - "latest${{ARM_TAG_POSTFIX}}"
166
- scale:
167
- push_quay_prod:
168
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
169
- title: "Pushing alpine image to quay.io registry with release tag"
170
- push_dockerhub_prod:
171
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
172
- title: "Pushing image to dockerhub registry with release tag"
173
- push_gcr_enterprise_prod:
174
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
175
- title: "Pushing image to gcr.io registry with release tag"
176
-
177
- push_master_debian:
178
- stage: push-master
179
- type: push
180
- candidate: ${{build_image_debian}}
181
- title: "Pushing debian image with release tag"
182
- when:
183
- branch:
184
- only: [ master ]
185
- steps:
186
- - name: build_image
187
- on:
188
- - success
189
- tags:
190
- - "${{PACKAGE_VERSION}}${{DEBIAN_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
191
- - "latest${{DEBIAN_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
192
- scale:
193
- push_quay_prod_debian:
194
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
195
- title: "Pushing image to quay.io registry with release tag"
196
- push_dockerhub_prod_debian:
197
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
198
- title: "Pushing image to dockerhub registry with release tag"
199
- push_gcr_enterprise_prod_debian:
200
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
201
- title: "Pushing image to gcr.io registry with release tag"
202
-
203
- push_master_alpine_rootless:
204
- stage: push-master
205
- type: push
206
- candidate: ${{build_image_alpine_rootless}}
207
- title: "Pushing rootless alpine image with release tag"
208
- when:
209
- branch:
210
- only: [ master ]
211
- steps:
212
- - name: build_image
213
- on:
214
- - success
215
- tags:
216
- - "${{PACKAGE_VERSION}}${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
217
- - "latest${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
218
- scale:
219
- push_quay_prod_rootless:
220
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
221
- title: "Pushing alpine image to quay.io registry with release tag"
222
- push_dockerhub_prod_rootless:
223
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
224
- title: "Pushing image to dockerhub registry with release tag"
225
- push_gcr_enterprise_prod_rootless:
226
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
227
- title: "Pushing image to gcr.io registry with release tag"
228
-
229
- push_master_debian_rootless:
230
- stage: push-master
231
- type: push
232
- candidate: ${{build_image_debian_rootless}}
233
- title: "Pushing rootless debian image with release tag"
234
- when:
235
- branch:
236
- only: [ master ]
237
- steps:
238
- - name: build_image
239
- on:
240
- - success
241
- tags:
242
- - "${{PACKAGE_VERSION}}${{DEBIAN_TAG_POSTFIX}}${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
243
- - "latest${{DEBIAN_TAG_POSTFIX}}${{ROOTLESS_TAG_POSTFIX}}${{ARM_TAG_POSTFIX}}"
244
- scale:
245
- push_quay_prod_debian_rootless:
246
- registry: "${{REGISTRY_INTEGRATION_QUAY}}"
247
- title: "Pushing image to quay.io registry with release tag"
248
- push_dockerhub_prod_debian_rootless:
249
- registry: "${{REGISTRY_INTEGRATION_DOCKERHUB}}"
250
- title: "Pushing image to dockerhub registry with release tag"
251
- push_gcr_enterprise_prod_debian_rootless:
252
- registry: "${{REGISTRY_INTEGRATION_ENTERPRISE}}"
253
- title: "Pushing image to gcr.io registry with release tag"