-
Notifications
You must be signed in to change notification settings - Fork 1
/
generated_config.yml
243 lines (242 loc) · 7.64 KB
/
generated_config.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
version: 2.1
executors:
deploy:
parameters:
dist:
type: string
arch:
type: string
docker:
- image: kroniak/ssh-client
working_directory: /output
environment:
DISTRO: << parameters.dist >>
ARCH: << parameters.arch >>
rpmbuilder:
parameters:
dist:
type: string
rpmlint:
type: integer
default: 1
docker:
- image: getpagespeed/rpmbuilder:<< parameters.dist >>
working_directory: /sources
environment:
RPMLINT: << parameters.rpmlint >>
jobs:
build:
parameters:
dist:
description: "The dist tag of OS to build for"
type: string
resource_class:
description: "The resource class to use for the build"
type: string
default: "small"
resource_class: << parameters.resource_class >>
executor:
name: rpmbuilder
dist: << parameters.dist >>
steps:
- checkout
- run:
name: "Run the build itself: this will do rpmlint and check RPMs existence among other things."
command: build
- run:
name: "Check for RPM files and halt if none exist"
command: |
set -x
if ls /output/*.rpm 1> /dev/null 2>&1; then
echo "RPM files found. Proceeding with persistence to workspace."
else
echo "No RPM files found. Halting the job."
curl --request POST --url https://circleci.com/api/v2/workflow/$CIRCLE_WORKFLOW_ID/cancel --header "Circle-Token: ${CIRCLE_TOKEN}"
circleci-agent step halt
fi
- persist_to_workspace:
root: /output
paths:
- "*.rpm"
deploy:
parameters:
dist:
description: "The dist tag of OS to deploy for"
type: string
arch:
description: "The architecture to deploy for"
type: string
executor:
name: deploy
dist: << parameters.dist >>
arch: << parameters.arch >>
steps:
- attach_workspace:
at: /output
- add_ssh_keys:
fingerprints:
- "8c:a4:dd:2c:47:4c:63:aa:90:0b:e0:d6:15:be:87:82"
- run:
name: "Ensure project specific upload directory to avoid deploy collisions"
command: >
ssh -o StrictHostKeyChecking=no
$GPS_BUILD_USER@$GPS_BUILD_SERVER
"mkdir -p ~/incoming/${CIRCLE_PROJECT_REPONAME}/${DISTRO}/${ARCH}/${CIRCLE_BRANCH}"
- run:
name: "Deploy all RPMs to GetPageSpeed repo."
command: |
echo "Uploading RPMs..."
ls -al
echo "Target upload directory: ~/incoming/${CIRCLE_PROJECT_REPONAME}/${DISTRO}/${ARCH}/${CIRCLE_BRANCH}/"
scp -o StrictHostKeyChecking=no -q -r *.rpm $GPS_BUILD_USER@$GPS_BUILD_SERVER:~/incoming/${CIRCLE_PROJECT_REPONAME}/${DISTRO}/${ARCH}/${CIRCLE_BRANCH}/
- run:
name: "Trigger Deploy Hook."
command: >
ssh -o StrictHostKeyChecking=no -q
$GPS_BUILD_USER@$GPS_BUILD_SERVER
"nohup ~/scripts/incoming.sh ${CIRCLE_PROJECT_REPONAME}/${DISTRO}/${ARCH}/${CIRCLE_BRANCH}/ > ~/incoming/$CIRCLE_PROJECT_REPONAME/$DISTRO/${ARCH}/${CIRCLE_BRANCH}/process.log 2>&1&"
workflows:
build-deploy-amzn2-aarch64:
jobs:
- build: {context: org-global, dist: amzn2, name: build-amzn2-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: amzn2
name: deploy-amzn2-aarch64
requires: [build-amzn2-aarch64]
build-deploy-amzn2-x86_64:
jobs:
- build: {context: org-global, dist: amzn2, name: build-amzn2-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: amzn2
name: deploy-amzn2-x86_64
requires: [build-amzn2-x86_64]
build-deploy-amzn2023-aarch64:
jobs:
- build: {context: org-global, dist: amzn2023, name: build-amzn2023-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: amzn2023
name: deploy-amzn2023-aarch64
requires: [build-amzn2023-aarch64]
build-deploy-amzn2023-x86_64:
jobs:
- build: {context: org-global, dist: amzn2023, name: build-amzn2023-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: amzn2023
name: deploy-amzn2023-x86_64
requires: [build-amzn2023-x86_64]
build-deploy-el7-aarch64:
jobs:
- build: {context: org-global, dist: el7, name: build-el7-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: el7
name: deploy-el7-aarch64
requires: [build-el7-aarch64]
build-deploy-el7-x86_64:
jobs:
- build: {context: org-global, dist: el7, name: build-el7-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: el7
name: deploy-el7-x86_64
requires: [build-el7-x86_64]
build-deploy-el8-aarch64:
jobs:
- build: {context: org-global, dist: el8, name: build-el8-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: el8
name: deploy-el8-aarch64
requires: [build-el8-aarch64]
build-deploy-el8-x86_64:
jobs:
- build: {context: org-global, dist: el8, name: build-el8-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: el8
name: deploy-el8-x86_64
requires: [build-el8-x86_64]
build-deploy-el9-aarch64:
jobs:
- build: {context: org-global, dist: el9, name: build-el9-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: el9
name: deploy-el9-aarch64
requires: [build-el9-aarch64]
build-deploy-el9-x86_64:
jobs:
- build: {context: org-global, dist: el9, name: build-el9-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: el9
name: deploy-el9-x86_64
requires: [build-el9-x86_64]
build-deploy-fc40-aarch64:
jobs:
- build: {context: org-global, dist: fc40, name: build-fc40-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: fc40
name: deploy-fc40-aarch64
requires: [build-fc40-aarch64]
build-deploy-fc40-x86_64:
jobs:
- build: {context: org-global, dist: fc40, name: build-fc40-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: fc40
name: deploy-fc40-x86_64
requires: [build-fc40-x86_64]
build-deploy-fc41-aarch64:
jobs:
- build: {context: org-global, dist: fc41, name: build-fc41-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: fc41
name: deploy-fc41-aarch64
requires: [build-fc41-aarch64]
build-deploy-fc41-x86_64:
jobs:
- build: {context: org-global, dist: fc41, name: build-fc41-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: fc41
name: deploy-fc41-x86_64
requires: [build-fc41-x86_64]
build-deploy-sles15-aarch64:
jobs:
- build: {context: org-global, dist: sles15, name: build-sles15-aarch64, resource_class: arm.medium}
- deploy:
arch: aarch64
context: org-global
dist: sles15
name: deploy-sles15-aarch64
requires: [build-sles15-aarch64]
build-deploy-sles15-x86_64:
jobs:
- build: {context: org-global, dist: sles15, name: build-sles15-x86_64}
- deploy:
arch: x86_64
context: org-global
dist: sles15
name: deploy-sles15-x86_64
requires: [build-sles15-x86_64]