@@ -8,6 +8,7 @@ parameters:
88 androidApiLevels : [ 30 ]
99 iosVersions : [ 'latest' ]
1010 provisionatorChannel : ' latest'
11+ timeoutInMinutes : 120
1112 skipProvisioning : true
1213 agentPoolAccessToken : ' '
1314 categoryGroupsToTest :
@@ -143,7 +144,7 @@ stages:
143144 ${{ each categoryGroup in parameters.categoryGroupsToTest }} :
144145 ${{ categoryGroup }} :
145146 CATEGORYGROUP : ${{ categoryGroup }}
146- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
147+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
147148 workspace :
148149 clean : all
149150 displayName : ${{ coalesce(project.desc, project.name) }} (v${{ version }})
@@ -180,7 +181,7 @@ stages:
180181 - ${{ each version in parameters.iosVersions }} :
181182 - ${{ if not(containsValue(project.iosVersionsExclude, version)) }} :
182183 - job : CV2_ios_ui_tests_mono_${{ project.name }}_${{ replace(version, '.', '_') }}
183- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
184+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
184185 workspace :
185186 clean : all
186187 displayName : ${{ coalesce(project.desc, project.name) }} (v${{ version }})
@@ -218,7 +219,7 @@ stages:
218219 - ${{ each version in parameters.iosVersions }} :
219220 - ${{ if not(containsValue(project.iosVersionsExclude, version)) }} :
220221 - job : CARV2_ios_ui_tests_mono_${{ project.name }}_${{ replace(version, '.', '_') }}
221- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
222+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
222223 workspace :
223224 clean : all
224225 displayName : ${{ coalesce(project.desc, project.name) }} (v${{ version }})
@@ -262,7 +263,7 @@ stages:
262263 ${{ each categoryGroup in parameters.categoryGroupsToTest }} :
263264 ${{ categoryGroup }} :
264265 CATEGORYGROUP : ${{ categoryGroup }}
265- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
266+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
266267 workspace :
267268 clean : all
268269 displayName : ${{ coalesce(project.desc, project.name) }} (v${{ version }})
@@ -302,7 +303,7 @@ stages:
302303 ${{ each categoryGroup in parameters.categoryGroupsToTest }} :
303304 ${{ categoryGroup }} :
304305 CATEGORYGROUP : ${{ categoryGroup }}
305- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
306+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
306307 workspace :
307308 clean : all
308309 displayName : ${{ coalesce(project.desc, project.name) }}
@@ -334,7 +335,7 @@ stages:
334335 ${{ each categoryGroup in parameters.categoryGroupsToTest }} :
335336 ${{ categoryGroup }} :
336337 CATEGORYGROUP : ${{ categoryGroup }}
337- timeoutInMinutes : 240 # how long to run the job before automatically cancelling
338+ timeoutInMinutes : ${{ parameters.timeoutInMinutes }} # how long to run the job before automatically cancelling
338339 workspace :
339340 clean : all
340341 displayName : ${{ coalesce(project.desc, project.name) }}
0 commit comments