File tree Expand file tree Collapse file tree 4 files changed +37
-60
lines changed Expand file tree Collapse file tree 4 files changed +37
-60
lines changed Original file line number Diff line number Diff line change 86
86
#sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
87
87
#sudo -u postgres psql -c "CREATE DATABASE test;"
88
88
displayName: 'Setup'
89
- - template : test .yml
89
+ - template : ../tests .yml
90
90
parameters :
91
91
configurationName : ${{ parameters.configurationName }}
92
- - template : test.yml
93
- parameters :
94
- configurationName : ${{ parameters.configurationName }}
95
- runTestsName : ' OpCache'
96
- runTestsParameters : -d zend_extension=opcache.so
97
- - template : test.yml
98
- parameters :
99
- configurationName : ${{ parameters.configurationName }}
100
- runTestsName : ' JIT'
101
- runTestsParameters : -d zend_extension=opcache.so -d opcache.jit_buffer_size=16M
92
+ runTestsParameters : ${{ parameters.runTestsParameters }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
displayName : ' Make Build'
19
19
- template : install.yml
20
20
- template : setup.yml
21
- - template : test .yml
21
+ - template : tests .yml
22
22
parameters :
23
23
configurationName : ${{ parameters.configurationName }}
24
24
runTestsParameters : ${{ parameters.runTestsParameters }}
25
- - template : test.yml
26
- parameters :
27
- configurationName : ${{ parameters.configurationName }}
28
- runTestsName : ' OpCache'
29
- runTestsParameters : >-
30
- ${{ parameters.runTestsParameters }}
31
- -d zend_extension=opcache.so
32
- - template : test.yml
33
- parameters :
34
- configurationName : ${{ parameters.configurationName }}
35
- runTestsName : ' JIT'
36
- runTestsParameters : >-
37
- ${{ parameters.runTestsParameters }}
38
- -d zend_extension=opcache.so
39
- -d opcache.jit_buffer_size=16M
Original file line number Diff line number Diff line change
1
+ parameters :
2
+ configurationName : ' '
3
+ runTestsParameters : ' '
4
+
5
+ steps :
6
+ - template : test.yml
7
+ parameters :
8
+ configurationName : ${{ parameters.configurationName }}
9
+ runTestsParameters : ${{ parameters.runTestsParameters }}
10
+ - template : test.yml
11
+ parameters :
12
+ configurationName : ${{ parameters.configurationName }}
13
+ runTestsName : ' OpCache'
14
+ runTestsParameters : >-
15
+ ${{ parameters.runTestsParameters }}
16
+ -d zend_extension=opcache.so
17
+ - ${{ if eq(variables['Build.Reason'], 'Schedule') }} :
18
+ - template : test.yml
19
+ parameters :
20
+ configurationName : ${{ parameters.configurationName }}
21
+ runTestsName : ' Function JIT'
22
+ runTestsParameters : >-
23
+ ${{ parameters.runTestsParameters }}
24
+ -d zend_extension=opcache.so
25
+ -d opcache.jit_buffer_size=16M
26
+ -d opcache.jit=1205
27
+ - template : test.yml
28
+ parameters :
29
+ configurationName : ${{ parameters.configurationName }}
30
+ runTestsName : ' Tracing JIT'
31
+ runTestsParameters : >-
32
+ ${{ parameters.runTestsParameters }}
33
+ -d zend_extension=opcache.so
34
+ -d opcache.jit_buffer_size=16M
You can’t perform that action at this time.
0 commit comments