-
Notifications
You must be signed in to change notification settings - Fork 15
438 lines (438 loc) · 15.5 KB
/
ci.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
name: Continuous Integration
env:
DOCKER_IMAGE: usabillabv/php
DOCKER_BUILDKIT: 1
DOCKER_CLI_EXPERIMENTAL: enabled
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '3 3 * * 1'
jobs:
supported-alpine-versions:
name: Supported Alpine versions
runs-on: ubuntu-latest
outputs:
alpine: ${{ steps.supported-alpine-versions.outputs.versions }}
steps:
- id: supported-alpine-versions
name: Generate Alpine
shell: bash
run: |
echo "::set-output name=versions::[\"3.12\", \"3.11\", \"3.10\"]"
supported-nginx-versions:
name: Supported nginx versions
runs-on: ubuntu-latest
outputs:
nginx: ${{ steps.supported-nginx-versions.outputs.versions }}
steps:
- id: supported-nginx-versions
name: Generate nginx
shell: bash
run: | # The "1.19-nginx1-nginx" in here will be changed to "1.19 nginx1 nginx" when calling ./build-http.sh
echo "::set-output name=versions::[\"1.19-nginx1-nginx\", \"1.18\"]"
supported-php-versions:
name: Supported PHP versions
runs-on: ubuntu-latest
outputs:
php: ${{ steps.supported-php-versions.outputs.versions }}
steps:
- id: supported-php-versions
name: Generate PHP
shell: bash
run: |
echo "::set-output name=versions::[\"7.4\", \"7.3\", \"7.2\"]"
php-type-matrix:
name: PHP Type Matrix
runs-on: ubuntu-latest
outputs:
type: ${{ steps.php-type-matrix.outputs.type }}
steps:
- id: php-type-matrix
name: Generate Type
shell: bash
run: |
echo "::set-output name=type::[\"cli\", \"fpm\"]"
type-matrix:
name: Type Matrix
runs-on: ubuntu-latest
needs:
- php-type-matrix
outputs:
type: ${{ steps.type-matrix.outputs.type }}
steps:
- id: type-matrix
name: Generate Type
shell: bash
run: |
echo "::set-output name=type::[\"cli\", \"fpm\", \"http\"]"
lint-docker:
name: Lint Dockerfile-${{ matrix.type }}
runs-on: ubuntu-latest
needs:
- type-matrix
strategy:
fail-fast: false
matrix:
type: ${{ fromJson(needs.type-matrix.outputs.type) }}
steps:
- uses: actions/checkout@v2
- name: Lint Dockerfile-${{ matrix.type }}
uses: docker://hadolint/hadolint:latest-debian
with:
entrypoint: hadolint
args: Dockerfile-${{ matrix.type }}
lint-shell:
name: Lint shell scripts
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- id: files
name: Generate shell script file list
shell: bash
run: |
list=$(ls src/http/nginx/docker* src/php/utils/install-* src/php/utils/docker/* build* test-* | tr "\n" " " | sed -z '$ s/\n$//')
echo -e "::set-output name=list::/github/workspace/${list// / /github/workspace/}build-http.sh"
- name: Lint shell scripts
uses: docker://koalaman/shellcheck:latest
with:
args: ${{ steps.files.outputs.list }}
build-http:
name: Build nginx ${{ matrix.nginx }}
needs:
- lint-docker
- lint-shell
- supported-nginx-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nginx: ${{ fromJson(needs.supported-nginx-versions.outputs.nginx) }}
steps:
- uses: actions/checkout@v2
- run: ./build-http.sh $(echo "${{ matrix.nginx }}" | tr '-' ' ')
shell: bash
- run: cat ./tmp/build-http.tags | xargs -I % docker inspect --format='%={{.Id}}:{{index .Config.Env 7}}' %
shell: bash
- run: docker save "${DOCKER_IMAGE}" | gzip -9 > ./tmp/image-http-${{ matrix.nginx }}.tar
shell: bash
- name: Upload Images
uses: actions/upload-artifact@v2
with:
name: docker-image-http-${{ matrix.nginx }}
path: ./tmp
build-prometheus-exporter-file:
name: Build prometheus-exporter-file
needs:
- lint-docker
- lint-shell
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- run: make build-prometheus-exporter-file
shell: bash
- run: cat ./tmp/build-prometheus-exporter-file.tags | xargs -I % docker inspect --format='%={{.Id}}:{{index .Config.Env 7}}' %
shell: bash
- run: docker save "${DOCKER_IMAGE}" | gzip -9 > ./tmp/image-prometheus-exporter-file.tar
shell: bash
- name: Upload Images
uses: actions/upload-artifact@v2
with:
name: docker-image-prometheus-exporter-file
path: ./tmp
build-php:
name: Build PHP ${{ matrix.php }} for ${{ matrix.type }} on Alpine ${{ matrix.alpine }}
needs:
- lint-docker
- lint-shell
- supported-alpine-versions
- supported-php-versions
- php-type-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alpine: ${{ fromJson(needs.supported-alpine-versions.outputs.alpine) }}
php: ${{ fromJson(needs.supported-php-versions.outputs.php) }}
type: ${{ fromJson(needs.php-type-matrix.outputs.type) }}
steps:
- uses: actions/checkout@v2
- run: ./build-php.sh ${{ matrix.type }} ${{ matrix.php }} ${{ matrix.alpine }}
shell: bash
- run: cat ./tmp/build-${{ matrix.type }}.tags | xargs -I % docker inspect --format='%={{.Id}}:{{index .Config.Env 7}}' %
shell: bash
- run: docker save "${DOCKER_IMAGE}" | gzip -9 > ./tmp/image-${{ matrix.type }}-${{ matrix.php }}-${{ matrix.alpine }}.tar
shell: bash
- name: Upload Images
uses: actions/upload-artifact@v2
with:
name: docker-image-${{ matrix.type }}-${{ matrix.php }}-${{ matrix.alpine }}
path: ./tmp
scan-vulnerability-php:
name: Scan PHP ${{ matrix.php }} for ${{ matrix.type }} on Alpine ${{ matrix.alpine }} for vulnerabilities
needs:
- build-php
- build-http
- build-prometheus-exporter-file
- supported-alpine-versions
- supported-php-versions
- php-type-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alpine: ${{ fromJson(needs.supported-alpine-versions.outputs.alpine) }}
php: ${{ fromJson(needs.supported-php-versions.outputs.php) }}
type: ${{ fromJson(needs.php-type-matrix.outputs.type) }}
steps:
- uses: actions/checkout@v2
- name: Install clair-scanner
shell: bash
run: |
sudo curl -L https://github.com/arminc/clair-scanner/releases/download/v8/clair-scanner_linux_amd64 -o /usr/local/bin/clair-scanner
sudo chmod +x /usr/local/bin/clair-scanner
- name: Download Docker image to scan
uses: actions/download-artifact@v2
with:
name: docker-image-${{ matrix.type }}-${{ matrix.php }}-${{ matrix.alpine }}
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: mkdir -p "./clair/${DOCKER_IMAGE}"
- run: make ci-scan-vulnerability
scan-vulnerability-http:
name: Scan nginx ${{ matrix.nginx }} for vulnerabilities
needs:
- build-php
- build-http
- build-prometheus-exporter-file
- supported-nginx-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nginx: ${{ fromJson(needs.supported-nginx-versions.outputs.nginx) }}
steps:
- uses: actions/checkout@v2
- name: Install clair-scanner
shell: bash
run: |
sudo curl -L https://github.com/arminc/clair-scanner/releases/download/v8/clair-scanner_linux_amd64 -o /usr/local/bin/clair-scanner
sudo chmod +x /usr/local/bin/clair-scanner
- name: Download Docker image to scan
uses: actions/download-artifact@v2
with:
name: docker-image-http-${{ matrix.nginx }}
path: ./tmp
- run: docker load --input ./tmp/image*.tar
shell: bash
- run: mkdir -p "./clair/${DOCKER_IMAGE}"
shell: bash
- run: make ci-scan-vulnerability
shell: bash
scan-vulnerability-prometheus-exporter-file:
name: Scan HTTP prometheus-exporter-file for vulnerabilities
needs:
- build-php
- build-http
- build-prometheus-exporter-file
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install clair-scanner
shell: bash
run: |
sudo curl -L https://github.com/arminc/clair-scanner/releases/download/v8/clair-scanner_linux_amd64 -o /usr/local/bin/clair-scanner
sudo chmod +x /usr/local/bin/clair-scanner
- name: Download Images
uses: actions/download-artifact@v2
with:
name: docker-image-prometheus-exporter-file
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: mkdir -p "./clair/${DOCKER_IMAGE}"
- run: make ci-scan-vulnerability
test-php:
name: Functionaly test PHP ${{ matrix.php }} for ${{ matrix.type }} on Alpine ${{ matrix.alpine }}
needs:
- build-php
- build-http
- build-prometheus-exporter-file
- supported-alpine-versions
- supported-php-versions
- php-type-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alpine: ${{ fromJson(needs.supported-alpine-versions.outputs.alpine) }}
php: ${{ fromJson(needs.supported-php-versions.outputs.php) }}
type: ${{ fromJson(needs.php-type-matrix.outputs.type) }}
steps:
- uses: actions/checkout@v2
- name: Download Images
uses: actions/download-artifact@v2
with:
name: docker-image-${{ matrix.type }}-${{ matrix.php }}-${{ matrix.alpine }}
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: make test-${{ matrix.type }}
test-http:
name: Functionaly test nginx ${{ matrix.nginx }} with PHP FPM ${{ matrix.php }} on Alpine ${{ matrix.alpine }}
needs:
- build-http
- build-php
- build-prometheus-exporter-file
- supported-alpine-versions
- supported-nginx-versions
- supported-php-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alpine: ${{ fromJson(needs.supported-alpine-versions.outputs.alpine) }}
nginx: ${{ fromJson(needs.supported-nginx-versions.outputs.nginx) }}
php: ${{ fromJson(needs.supported-php-versions.outputs.php) }}
steps:
- uses: actions/checkout@v2
- name: Download PHP Images
uses: actions/download-artifact@v2
with:
name: docker-image-fpm-${{ matrix.php }}-${{ matrix.alpine }}
path: ./tmp
- name: Download nginx Images
uses: actions/download-artifact@v2
with:
name: docker-image-http-${{ matrix.nginx }}
path: ./tmp
- run: docker load --input ./tmp/image-fpm-${{ matrix.php }}-${{ matrix.alpine }}.tar
- run: docker load --input ./tmp/image-http-${{ matrix.nginx }}.tar
- run: sudo chown -R 1000:1000 ./test/functional/web/tmp/ # Ensure we have the same uid:gid as our `app` docker user
shell: bash
- run: make test-http
- run: make test-http-e2e
test-prometheus-exporter-file:
name: Functionaly test prometheus-exporter-file
needs:
- build-http
- build-php
- build-prometheus-exporter-file
- supported-nginx-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Download nginx Images
uses: actions/download-artifact@v2
with:
name: docker-image-prometheus-exporter-file
path: ./tmp
- run: docker load --input ./tmp/image-prometheus-exporter-file.tar
- run: sudo chown -R 1000:1000 ./test/functional/web/tmp/ # Ensure we have the same uid:gid as our `app` docker user
shell: bash
- run: make test-prometheus-exporter-file-e2e
check-mark: # This is our required step, pay extra attention when this step is changed for what ever reason
name: ✔️
needs:
- test-http
- test-php
- test-prometheus-exporter-file
- scan-vulnerability-http
- scan-vulnerability-php
- scan-vulnerability-prometheus-exporter-file
runs-on: ubuntu-latest
steps:
- run: echo "✔️"
push-prometheus-exporter-file:
name: Push prometheus-exporter-file
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref == 'refs/heads/master'
needs:
- test-http
- test-php
- test-prometheus-exporter-file
- scan-vulnerability-http
- scan-vulnerability-php
- scan-vulnerability-prometheus-exporter-file
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Download Images
uses: actions/download-artifact@v2
with:
name: docker-image-prometheus-exporter-file
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: make ci-docker-login push-prometheus-exporter-file
env:
CONTAINER_REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
push-http:
name: Push nginx ${{ matrix.nginx }}
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref == 'refs/heads/master'
needs:
- test-http
- test-php
- test-prometheus-exporter-file
- scan-vulnerability-http
- scan-vulnerability-php
- scan-vulnerability-prometheus-exporter-file
- supported-nginx-versions
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nginx: ${{ fromJson(needs.supported-nginx-versions.outputs.nginx) }}
steps:
- uses: actions/checkout@v2
- name: Download Images
uses: actions/download-artifact@v2
with:
name: docker-image-http-${{ matrix.nginx }}
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: make ci-docker-login push-http
env:
CONTAINER_REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
push-php:
name: Push PHP ${{ matrix.php }} for ${{ matrix.type }} on Alpine ${{ matrix.alpine }}
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref == 'refs/heads/master'
needs:
- test-http
- test-php
- test-prometheus-exporter-file
- scan-vulnerability-http
- scan-vulnerability-php
- scan-vulnerability-prometheus-exporter-file
- supported-alpine-versions
- supported-php-versions
- php-type-matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
alpine: ${{ fromJson(needs.supported-alpine-versions.outputs.alpine) }}
php: ${{ fromJson(needs.supported-php-versions.outputs.php) }}
type: ${{ fromJson(needs.php-type-matrix.outputs.type) }}
steps:
- uses: actions/checkout@v2
- name: Download Images
uses: actions/download-artifact@v2
with:
name: docker-image-${{ matrix.type }}-${{ matrix.php }}-${{ matrix.alpine }}
path: ./tmp
- run: docker load --input ./tmp/image*.tar
- run: make ci-docker-login push-${{ matrix.type }}
env:
CONTAINER_REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}