blob: 14317f5fb323aeac129a234793f8e0190fa954b5 (
plain)
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
|
stages:
- testsuite
.php7:
stage: testsuite
script:
- pecl install vld-beta
- rm -rf src/tests/*php8*/
- make tests
after_script:
- grep -r . ./src/tests/*/*.out
- grep -r . ./src/tests/*/*.diff
.php8:
stage: testsuite
script:
- make tests
after_script:
- grep -r . ./src/tests/*/*.out
- grep -r . ./src/tests/*/*.diff
testsuite:php7.0:
extends: .php7
image: php:7.0
testsuite:php7.1:
extends: .php7
image: php:7.1
testsuite:php7.2:
extends: .php7
image: php:7.2
testsuite:php7.3:
extends: .php7
image: php:7.3
testsuite:php7.4:
extends: .php7
image: php:7.3
testsuite:php8.0:
extends: .php8
image: php:8.0
|