forked from cataphract/php-rar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
85 lines (74 loc) · 1.78 KB
/
azure-pipelines.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
jobs:
- template: azure-template.yml
parameters:
name: php_5_3_valgrind
displayName: PHP 5.3 ZTS (valgrind, clang)
phpVersion: '5.3'
clang: true
valgrind: true
zts: true
- template: azure-template.yml
parameters:
name: php_5_4
displayName: PHP 5.4
phpVersion: '5.4'
- template: azure-template.yml
parameters:
name: php_5_5
displayName: PHP 5.5
phpVersion: '5.5'
- template: azure-template.yml
parameters:
name: php_5_6
displayName: PHP 5.6
phpVersion: '5.6'
- template: azure-template.yml
parameters:
name: php_5_6_valgrind
displayName: PHP 5.6 ZTS (valgrind, clang)
phpVersion: '5.6'
clang: true
valgrind: true
zts: true
- template: azure-template.yml
parameters:
name: php_7_0
displayName: PHP 7.0
phpVersion: '7.0'
- template: azure-template.yml
parameters:
name: php_7_1
displayName: PHP 7.1
phpVersion: '7.1'
- template: azure-template.yml
parameters:
name: php_7_2
displayName: PHP 7.2
phpVersion: '7.2'
- template: azure-template.yml
parameters:
name: php_7_3
displayName: PHP 7.3
phpVersion: '7.3'
- template: azure-template.yml
parameters:
name: php_7_4
displayName: PHP 7.4 ZTS (valgrind, clang)
phpVersion: '7.4'
clang: true
valgrind: true
zts: true
- template: azure-template.yml
parameters:
name: php_8_0
displayName: PHP 8.0 ZTS
phpVersion: '8.0'
zts: true
publishCoverage: true
- template: azure-template.yml
parameters:
name: php_8_0_valgrind
displayName: PHP 8.0 (valgrind, clang)
phpVersion: '8.0'
clang: true
valgrind: true