Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Android pipeline timeout declaration #2360

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tools/yaml-templates/android-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ steps:

- task: Bash@3
displayName: 'Install Emulator'
# This task is flaky, but when it works it almost always completes in under 5 minutes.
# Setting the timeout to 10 minutes so we can fail faster when it fails.
timeoutInMinutes: 10
inputs:
targetType: inline
script: 'chmod u+x install_emulator.sh && ./install_emulator.sh'
workingDirectory: '$(Agent.BuildDirectory)/androidHost/devtools/ci'
# This task is flaky, but when it works it almost always completes in under 5 minutes.
# Setting the timeout to 10 minutes so we can fail faster when it fails.
timeoutInMinutes: 10

- task: JavaToolInstaller@0
inputs:
Expand Down
Loading