diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2023-03-30 08:13:26 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-03-30 19:24:36 +0000 |
commit | b08a19eae28e76fb5a296a604c27d06fab29b08a (patch) | |
tree | a00e28ede26bca2da1f2c82b6c6eb096ca8dd237 /.azurepipelines | |
parent | e9e61671237e10f7d7672ff74e8907941a954c1d (diff) | |
download | edk2-b08a19eae28e76fb5a296a604c27d06fab29b08a.zip edk2-b08a19eae28e76fb5a296a604c27d06fab29b08a.tar.gz edk2-b08a19eae28e76fb5a296a604c27d06fab29b08a.tar.bz2 |
.azurepipelines/templates: Increase run to shell timeout
Increase the CI agent timeout to boot to UEFI Shell from
1 minute to 2 minutes. There have been a few cases where
the boot to shell in QEMU has not quite completed in 1
minute and it is failing the CI check and preventing a PR
from being merged.
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Michael Kubacki <mikuback@linux.microsoft.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to '.azurepipelines')
-rw-r--r-- | .azurepipelines/templates/platform-build-run-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml index 087f460..8be46cd 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -116,7 +116,7 @@ steps: filename: stuart_build
arguments: -c ${{ parameters.build_file }} TOOL_CHAIN_TAG=${{ parameters.tool_chain_tag}} TARGET=${{ parameters.build_target}} -a ${{ parameters.build_arch}} ${{ parameters.build_flags}} ${{ parameters.run_flags }} --FlashOnly
condition: and(and(gt(variables.pkg_count, 0), succeeded()), eq(variables['Run'], true))
- timeoutInMinutes: 1
+ timeoutInMinutes: 2
# Copy the build logs to the artifact staging directory
- task: CopyFiles@2
|