summaryrefslogtreecommitdiff
path: root/azure/job.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure/job.yml')
-rw-r--r--azure/job.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/azure/job.yml b/azure/job.yml
index a7267f11c3..646faed755 100644
--- a/azure/job.yml
+++ b/azure/job.yml
@@ -1,9 +1,12 @@
parameters:
configurationName: ''
configurationParameters: ''
+ runTestsParameters: ''
+ timeoutInMinutes: 60
jobs:
- job: ${{ parameters.configurationName }}
+ timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
pool:
vmImage: 'ubuntu-latest'
steps:
@@ -80,8 +83,11 @@ jobs:
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
+ runTestsParameters: ${{ parameters.runTestsParameters }}
- template: test.yml
parameters:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'OpCache'
- runTestsParameters: -d zend_extension=opcache.so -d opcache.enable_cli=1
+ runTestsParameters: >-
+ ${{ parameters.runTestsParameters }}
+ -d zend_extension=opcache.so -d opcache.enable_cli=1