-
Notifications
You must be signed in to change notification settings - Fork 5
337 lines (299 loc) · 9.99 KB
/
ci.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
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
335
336
337
name: CI
on: [push]
env:
COMPOSE_PROJECT_NAME: build
PS_SUBNET: 172.34.0.0/16
PS_GATEWAY_IP: 172.34.0.1
PHRASEA_DOMAIN: phrasea.local
TRAEFIK_HTTPS_PORT: 4442
TRAEFIK_HTTP_PORT: 8042
HTTPS_PORT_PREFIX: ':4442'
REGISTRY_NAMESPACE: ghcr.io/${{ github.repository_owner }}/ps-
DOCKER_TAG: ${{ github.sha }}
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
VERIFY_SSL: "false"
COMPOSE_PROFILES: databox,expose,notify,uploader,databox-worker,expose-worker,notify-worker,uploader-worker,db,report,mailhog,dashboard
jobs:
build_keycloak:
name: 'Build Keycloak'
uses: ./.github/workflows/build_base.yaml
with:
image: keycloak
context: ./infra/docker/keycloak
target: keycloak
secrets: inherit
build_php-fpm-base:
name: 'Build php-fpm-base'
uses: ./.github/workflows/build_base.yaml
with:
image: php-fpm-base
context: ./infra/docker/php-fpm-base
secrets: inherit
build_configurator:
name: 'Build Configurator'
uses: ./.github/workflows/build_base.yaml
with:
image: configurator
context: ./configurator
secrets: inherit
needs:
- build_php-fpm-base
build_nginx-fpm-base:
name: 'Build nginx-fpm-base'
uses: ./.github/workflows/build_base.yaml
with:
image: nginx-fpm-base
context: ./infra/docker/nginx-fpm-base
secrets: inherit
build_nodejs-base:
name: 'Build nodejs-base'
uses: ./.github/workflows/build_base.yaml
with:
image: nodejs-base
context: ./infra/docker/nodejs-base
secrets: inherit
build_nginx-cache-purge:
name: 'Build nginx-cache-purge'
uses: ./.github/workflows/build_base.yaml
with:
image: nginx-cache-purge
context: ./infra/docker/nginx-cache-purge
secrets: inherit
build_dashboard:
name: 'Build Dashboard'
uses: ./.github/workflows/build.yaml
with:
image: dashboard
context: ./dashboard/client
withLibs: true
secrets: inherit
needs:
- build_nodejs-base
build_databox_api:
name: 'Build Databox API'
uses: ./.github/workflows/build_api.yaml
with:
prefix: databox
context: ./databox/api
withLibs: true
secrets: inherit
needs:
- build_php-fpm-base
- build_nginx-fpm-base
build_databox_client:
name: 'Build Databox Client'
uses: ./.github/workflows/build.yaml
with:
image: databox-client
context: ./databox/client
withLibs: true
secrets: inherit
needs:
- build_nodejs-base
build_databox_indexer:
name: 'Build Databox Indexer'
uses: ./.github/workflows/build.yaml
with:
image: databox-indexer
context: ./databox/indexer
withLibs: true
secrets: inherit
build_expose_api:
name: 'Build Expose API'
uses: ./.github/workflows/build_api.yaml
with:
prefix: expose
context: ./expose/api
withLibs: true
secrets: inherit
needs:
- build_php-fpm-base
- build_nginx-cache-purge
build_expose_client:
name: 'Build Expose Client'
uses: ./.github/workflows/build.yaml
with:
image: expose-client
context: ./expose/client
withLibs: true
secrets: inherit
needs:
- build_nodejs-base
build_matomo_php:
name: 'Build Matomo PHP'
uses: ./.github/workflows/build.yaml
with:
image: matomo-php
context: ./infra/docker/matomo-php
secrets: inherit
build_matomo_nginx:
name: 'Build Matomo NGINX'
uses: ./.github/workflows/build.yaml
with:
image: matomo-nginx
context: ./infra/docker/matomo-nginx
secrets: inherit
build_notify_api:
name: 'Build Notify API'
uses: ./.github/workflows/build_api.yaml
with:
prefix: notify
context: ./notify/api
withLibs: true
secrets: inherit
needs:
- build_php-fpm-base
- build_nginx-fpm-base
build_report_api:
name: 'Build Report API'
uses: ./.github/workflows/build.yaml
with:
image: report-api
context: report
secrets: inherit
build_uploader_api:
name: 'Build Uploader API'
uses: ./.github/workflows/build_api.yaml
with:
prefix: uploader
context: ./uploader/api
withLibs: true
secrets: inherit
needs:
- build_php-fpm-base
- build_nginx-fpm-base
build_uploader_client:
name: 'Build Uploader Client'
uses: ./.github/workflows/build.yaml
with:
image: uploader-client
context: ./uploader/client
withLibs: true
secrets: inherit
needs:
- build_nodejs-base
setup:
name: 'Setup stack'
runs-on: ubuntu-latest
needs:
- build_configurator
- build_dashboard
- build_databox_api
- build_databox_client
- build_databox_indexer
- build_expose_api
- build_expose_client
- build_keycloak
- build_matomo_nginx
- build_matomo_php
- build_notify_api
- build_report_api
- build_uploader_api
- build_uploader_client
steps:
- name: Install mkcert
run: |
sudo apt-get update
sudo apt-get install wget libnss3-tools
wget https://github.com/FiloSottile/mkcert/releases/download/v1.4.3/mkcert-v1.4.3-linux-amd64
sudo mv mkcert-v1.4.3-linux-amd64 /usr/bin/mkcert
sudo chmod +x /usr/bin/mkcert
mkcert -install
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.IMAGE_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pull images
run: |
docker compose pull
docker compose pull configurator
- name: Setup
if: "!contains(github.event.head_commit.message, '[skip test]')"
run: |
docker compose down --volumes
bin/dev/make-cert.sh
sudo PHRASEA_DOMAIN=${PHRASEA_DOMAIN} bin/dev/append-etc-hosts.sh
bin/setup.sh test
- name: Test
if: "!contains(github.event.head_commit.message, '[skip test]')"
run: bin/test.sh
- name: Run Cypress tests
if: "!contains(github.event.head_commit.message, '[skip cypress]') && !contains(github.event.head_commit.message, '[skip test]')"
run: |
docker compose up -d
docker compose run --rm cypress
- name: Extract Cypress output
if: failure()
run: |
mkdir cypress-output
docker run -d --rm --name dummy -v ${COMPOSE_PROJECT_NAME}_cypress_output:/cypress/output alpine:3.14.8 tail -f /dev/null
docker cp dummy:/cypress/output ./cypress-output/
docker stop dummy
docker compose down --volumes
- name: Upload Cypress output
if: failure()
uses: actions/upload-artifact@v3
with:
name: cypress-error
path: |
./cypress-output/output/screenshots
./cypress-output/output/results
retention-days: 2
- name: Clean containers
if: ${{ always() }}
run: |
docker compose down --volumes
- name: Login to Docker Hub
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
if: env.DOCKERHUB_USERNAME != null && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push images to Dockerhub
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
if: env.DOCKERHUB_USERNAME != null && startsWith(github.ref, 'refs/tags/')
run: |
docker image ls | grep ${{ env.DOCKER_TAG }} | awk '{ print $1 }' | xargs -I {} echo docker tag {}:${{ env.DOCKER_TAG }} {}:${{ github.ref_name }} | sed "s,${{ env.REGISTRY_NAMESPACE }},alchemyfr/ps-,2" | bash
export COMPOSE_PROFILES="${COMPOSE_PROFILES},configurator"
REGISTRY_NAMESPACE=alchemyfr/ps- DOCKER_TAG=${{ github.ref_name }} docker compose push
set -ex
LATEST_TAG=$(curl \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ github.token }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ github.repository }}/releases/latest | jq --raw-output '.tag_name')
if [ "${LATEST_TAG}" == "${{ github.ref_name }}" ]; then
docker image ls | grep ${{ env.DOCKER_TAG }} | awk '{ print $1 }' | xargs -I {} echo docker tag {}:${{ env.DOCKER_TAG }} {}:latest | sed "s,${{ env.REGISTRY_NAMESPACE }},alchemyfr/ps-,2" | bash
REGISTRY_NAMESPACE=alchemyfr/ps- DOCKER_TAG=latest docker compose push
fi
- name: Configure AWS Credentials
env:
AWS_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_ECR_ACCESS_KEY_ID }}
if: env.AWS_ECR_ACCESS_KEY_ID != null
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ECR_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_ECR_ACCESS_KEY_SECRET }}
aws-region: us-east-1
- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
registry-type: public
- name: Push images to AWS ECR
env:
AWS_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_ECR_ACCESS_KEY_ID }}
REGISTRY_ALIAS: b2s9z7l1
if: env.AWS_ECR_ACCESS_KEY_ID != null
run: |
ECR_REGISTRY="${{ steps.login-ecr-public.outputs.registry }}/${REGISTRY_ALIAS}"
docker image ls | grep ${{ env.DOCKER_TAG }} | awk '{ print $1 }' | xargs -I {} echo docker tag {}:${{ env.DOCKER_TAG }} {}:${{ github.ref_name }} | sed "s,${{ env.REGISTRY_NAMESPACE }},${ECR_REGISTRY}/ps-,2" | bash
export COMPOSE_PROFILES="${COMPOSE_PROFILES},configurator"
REGISTRY_NAMESPACE=${ECR_REGISTRY}/ps- DOCKER_TAG=${{ github.ref_name }} docker compose push