Skip to content

Commit 3d28a3a

Browse files
committed
Update readme with timeout info
1 parent 761c73d commit 3d28a3a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,19 @@ Add the "Upload to Buildstash" task to your Azure DevOps pipeline:
6868
- **Platform**: Platform name (must exactly match platform slug attached to your app)
6969
- **Stream**: Stream name (must exactly match)
7070
- **Notes**: Optional build notes
71+
72+
## Adjust Timeout
73+
74+
By default Azure DevOps will timeout jobs after 60 minutes.
75+
76+
This is probably fine, but if you are uploading a particularly massive build, or have a slow connection, you may wish to tweak this.
77+
78+
This is done on the job as below:
79+
80+
```yaml
81+
jobs:
82+
- job: Test
83+
timeoutInMinutes: 60 # how long to run the job before automatically cancelling in minutes - increase if needed for large uploads
84+
```
85+
86+
Refer to [Azure docs for more detail](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts).

0 commit comments

Comments
 (0)