-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitlab-ci-build.yml
More file actions
87 lines (76 loc) · 1.7 KB
/
.gitlab-ci-build.yml
File metadata and controls
87 lines (76 loc) · 1.7 KB
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
# PHP 7.2
build:php7-2-node10:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-2
- .variables-node10
build:php7-2-node12:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-2
- .variables-node12
build:php7-2-node14:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-2
- .variables-node14
# PHP 7.3
build:php7-3-node10:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-3
- .variables-node10
build:php7-3-node12:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-3
- .variables-node12
build:php7-3-node14:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-3
- .variables-node14
# PHP 7.4
build:php7-4-node10:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-4
- .variables-node10
build:php7-4-node12:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-4
- .variables-node12
build:php7-4-node14:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php7-4
- .variables-node14
# PHP 8.0
build:php8-0-node10:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php8-0
- .variables-node10
build:php8-0-node12:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php8-0
- .variables-node12
build:php8-0-node14:
needs: ["quality:dockerfile"]
extends:
- .build
- .variables-php8-0
- .variables-node14