Skip to content

Commit

Permalink
increase Test GPU Job's timeout to 8 hours (microsoft#14850)
Browse files Browse the repository at this point in the history
### Description
<!-- Describe your changes. -->

### Motivation and Context
In practice, 6 hours is not enough to finish the job.
  • Loading branch information
mszhanyi authored Feb 28, 2023
1 parent 79aa0ac commit 6320dec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6320dec

Please sign in to comment.