-
Notifications
You must be signed in to change notification settings - Fork 126
334 lines (285 loc) · 11.7 KB
/
dockers_builder_dev.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
name: Build Navitia Dockers (Dev)
on:
push:
branches:
- dev
env:
jessie_version: debian8
bullseye_version: debian11
front_jessie_navitia_components: 'tyr-web instances-configurator'
backend_jessie_navitia_components: 'kraken tyr-beat tyr-worker mock-kraken eitri'
SBX_ECR_REGISTRY_BACKEND: "110444322584.dkr.ecr.eu-west-1.amazonaws.com"
SBX_ECR_REGISTRY_FRONT: "051314639660.dkr.ecr.eu-west-1.amazonaws.com"
TAG: 'dev'
jobs:
front_bullseye_builder:
runs-on: [self-hosted, corefront, sandbox]
name: Front Bullseye builder (Dev)
steps:
- name: force chown to avoid errors
run: sudo chown -R $USER:$USER .
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y httpie
- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.CI_CORE_APP_ID }}
private_key: ${{ secrets.CI_CORE_APP_PEM }}
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ steps.ci-core-app-token.outputs.token }}
# we need entire history for tags
fetch-depth: 0
# - name: Restore ccache
# uses: hendrikmuhs/[email protected]
# with:
# key: build_dockers
# max-size: 2000M
- name: Login to Amazon ECR SBX
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
- name: Login to Amazon ECR Shared
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
with:
registries: "162230498103"
- name: Create builder docker
run: |
docker build -f docker/${{env.bullseye_version}}/Dockerfile-builder -t navitia/builder .
- name: Build navitia
run: |
docker run -v `pwd`:/navitia/navitia/ navitia/builder
- name: Create navitia images
run: |
echo "********* Building Jormungandr ***************"
docker build -t ${SBX_ECR_REGISTRY_FRONT}/jormungandr:no_config_${TAG} -f docker/${{env.bullseye_version}}/Dockerfile-jormungandr .
- name: Push images on SBX ECR
run: |
echo "********* Push Jormungandr ***************"
docker push ${SBX_ECR_REGISTRY_FRONT}/jormungandr:no_config_${TAG}
- name: failure notification
if: failure()
run: |
echo '{"text":":warning: Github Actions: workflow dockers_builder_dev Job front_bullseye_builder is failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_TEAM_URL}}
front_jessie_builder:
runs-on: [self-hosted, corefront, sandbox]
name: Front Jessie builder (Dev)
steps:
- name: force chown to avoid errors
run: sudo chown -R $USER:$USER .
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y httpie
- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.CI_CORE_APP_ID }}
private_key: ${{ secrets.CI_CORE_APP_PEM }}
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ steps.ci-core-app-token.outputs.token }}
# we need entire history for tags
fetch-depth: 0
# - name: Restore ccache
# uses: hendrikmuhs/[email protected]
# with:
# key: build_dockers
# max-size: 2000M
- name: Login to Amazon ECR SBX
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
- name: Login to Amazon ECR Shared
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
with:
registries: "162230498103"
- name: Create master docker
run: |
docker build -f docker/${{env.jessie_version}}/Dockerfile-master -t navitia/master .
docker build -f docker/${{env.jessie_version}}/Dockerfile-builder -t navitia/builder .
- name: Build packages in master docker
# Will build navitia-*.deb packages in current folder
run: docker run -v `pwd`:/build/navitia/ navitia/builder
- name: Create navitia images
run: |
for component in ${{env.front_jessie_navitia_components}}; do
echo "********* Building $component ***************"
docker build -t ${SBX_ECR_REGISTRY_FRONT}/$component:${TAG} -f docker/${{env.jessie_version}}/Dockerfile-${component} .
done
- name: Push images on SBX ECR
run: |
for component in ${{env.front_jessie_navitia_components}}; do
echo "********* Building $component ***************"
docker push ${SBX_ECR_REGISTRY_FRONT}/$component:${TAG}
done
- name: failure notification
if: failure()
run: |
echo '{"text":":warning: Github Actions: workflow dockers_builder_dev Job front_jessie_builder is failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_TEAM_URL}}
backend_jessie_builder:
runs-on: [self-hosted, kraken, sandbox]
name: Backend Jessie builder (Dev)
steps:
- name: force chown to avoid errors
run: sudo chown -R $USER:$USER .
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y zip httpie curl python3 python3-pip
- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.CI_CORE_APP_ID }}
private_key: ${{ secrets.CI_CORE_APP_PEM }}
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ steps.ci-core-app-token.outputs.token }}
# we need entire history for tags
fetch-depth: 0
- name: Checkout core_team_ci_tools
uses: actions/checkout@v3
with:
repository : 'hove-io/core_team_ci_tools'
path: core_team_ci_tools
token: ${{ steps.ci-core-app-token.outputs.token }}
- name: Setup core_team_ci_tools python environment
run: |
pip install -r core_team_ci_tools/github_artifacts/requirements.txt --user
- name: Download mimirsbrunn package
run: |
mimirsbrunn_package="debian-package-master.zip"
python3 core_team_ci_tools/github_artifacts/github_artifacts.py \
-o hove-io \
-r mimirsbrunn \
-t ${{ steps.ci-core-app-token.outputs.token }} \
-w main7.yml \
-a debian-package-master.zip \
--output-dir .
unzip -qo $mimirsbrunn_package
rm -f $mimirsbrunn_package
- name: Download cosmogony2cities package
run: |
cosmogony2cities_package="package-${{env.jessie_version}}.zip"
python3 core_team_ci_tools/github_artifacts/github_artifacts.py \
-o hove-io \
-r cosmogony2cities \
-t ${{ steps.ci-core-app-token.outputs.token }} \
-w build_package.yml \
-a $cosmogony2cities_package \
--output-dir .
unzip -qo $cosmogony2cities_package
rm -f $cosmogony2cities_package
- name: Download mimir-config package
run: |
conf_mimir_package="debian-package-release.zip"
python3 core_team_ci_tools/github_artifacts/github_artifacts.py \
-o hove-io \
-r mimirsbrunn-config \
-t ${{ steps.ci-core-app-token.outputs.token }} \
-w release.yml \
-a $conf_mimir_package \
-b main \
--skip-check-artifacts-size \
--output-dir .
unzip -qo $conf_mimir_package
rm -f $conf_mimir_package
# - name: Restore ccache
# uses: hendrikmuhs/[email protected]
# with:
# key: build_dockers
# max-size: 2000M
- name: Login to Amazon ECR SBX
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
- name: Login to Amazon ECR Shared
uses: aws-actions/amazon-ecr-login@v1
env:
AWS_REGION: eu-west-1
with:
registries: "162230498103"
- name: Create master docker
run: |
docker build -f docker/${{env.jessie_version}}/Dockerfile-master -t navitia/master .
docker build -f docker/${{env.jessie_version}}/Dockerfile-builder -t navitia/builder .
- name: Build packages in master docker
# Will build navitia-*.deb packages in current folder
run: docker run -v `pwd`:/build/navitia/ navitia/builder
- name: Create navitia images
run: |
for component in ${{env.backend_jessie_navitia_components}}; do
echo "********* Building $component ***************"
docker build -t ${SBX_ECR_REGISTRY_BACKEND}/$component:${TAG} -f docker/${{env.jessie_version}}/Dockerfile-${component} .
done
- name: Push images on SBX ECR
run: |
for component in ${{env.backend_jessie_navitia_components}}; do
echo "********* Building $component ***************"
docker push ${SBX_ECR_REGISTRY_BACKEND}/$component:${TAG}
done
- name: failure notification
if: failure()
run: |
echo '{"text":":warning: Github Actions: workflow dockers_builder_dev Job backend_jessie_builder is failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_TEAM_URL}}
publish_aws:
runs-on: [self-hosted, corefront, sandbox]
name: Aws Dispatch (Dev)
needs: [front_jessie_builder, front_bullseye_builder, backend_jessie_builder]
steps:
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y httpie
- name: Generate token for aws images
id: app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.GA_OS_WORKFLOW_TRIGGER_APP_ID }}
private_key: ${{ secrets.GA_OS_WORKFLOW_TRIGGER_APP_PEM }}
- name: Aws Dispatch Frontend
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ steps.app-token.outputs.token }}
repository: hove-io/core-front-aws-assets
event-type: build-trigger
client-payload: '{"branch": "dev", "tag": "dev"}'
- name: failure notification
if: failure()
run: |
echo '{"text":":warning: Github Actions: dockers_builder_dev the job publish_aws is failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_TEAM_URL}}
run_artemis:
runs-on: [self-hosted, corefront, sandbox]
needs: [front_jessie_builder, front_bullseye_builder, backend_jessie_builder, publish_aws]
name: Run artemis Dispatch (Dev)
steps:
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y httpie
- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.CI_CORE_APP_ID }}
private_key: ${{ secrets.CI_CORE_APP_PEM }}
- name: Run artemis on push to dev
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ steps.ci-core-app-token.outputs.token }}
repository: hove-io/artemis
event-type: run_artemis_ng
- name: failure notification
if: failure()
run: |
echo '{"text":":warning: Github Actions: workflow dockers_builder_dev Job run_artemis is failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_TEAM_URL}}