mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
increase Test GPU Job's timeout to 8 hours (#14850)
### Description <!-- Describe your changes. --> ### Motivation and Context In practice, 6 hours is not enough to finish the job.
This commit is contained in:
parent
79aa0acdd0
commit
6320decf04
2 changed files with 6 additions and 1 deletions
|
|
@ -35,6 +35,7 @@ stages:
|
|||
machine_pool: 'Onnxruntime-Linux-GPU'
|
||||
device: 'GPU'
|
||||
python_wheel_suffix: '_gpu'
|
||||
timeout: 480
|
||||
|
||||
|
||||
# if final job not extecuted, it will not run nightlly build
|
||||
|
|
|
|||
|
|
@ -16,9 +16,13 @@ parameters:
|
|||
type: string
|
||||
default: ''
|
||||
|
||||
- name: timeout
|
||||
type: number
|
||||
default: 120
|
||||
|
||||
jobs:
|
||||
- job: Linux_Test_${{ parameters.device }}${{ parameters.extra_job_id }}_${{ parameters.arch }}
|
||||
timeoutInMinutes: 360
|
||||
timeoutInMinutes: ${{ parameters.timeout }}
|
||||
variables:
|
||||
skipComponentGovernanceDetection: true
|
||||
workspace:
|
||||
|
|
|
|||
Loading…
Reference in a new issue