From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web11.28614.1680190035059240437 for ; Thu, 30 Mar 2023 08:27:15 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=JZe5LLFD; spf=pass (domain: kernel.org, ip: 139.178.84.217, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 82D3661FFD for ; Thu, 30 Mar 2023 15:27:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E88E8C433EF for ; Thu, 30 Mar 2023 15:27:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680190033; bh=LFMxfWjzdsFtOYUTojplEKA6dB0APWwomfP4YHLgD+8=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=JZe5LLFDwwL8tcXbqlHVTlfpwoASH/oTbOsIY3fwEy2duy8ZnyzPE4Eaup4jL3mAE 9egX00uAYkCBzb+tleRdh/gVItZEyI+za5wQFcdWBf5z+j6zhDrZc6b9W8Uim4TOek +IVmGMIW5a2EaFEjzWRP31KzvChkZBtLQhku4CFKvX7ARIhiPJVEaluvt2LkbsRmTP xnlr/jX0pWGjPgzq+A8PkvVeUIBwnCz+R8IblSFH2EIvIF2EHwKVSzl3Hd0isaQefz vl0liPCMWECYRYJKKtabVY24rxPpVtqvclBHTcrDWDNAIIGw0xsW+pbj++8nrliHLb bodT8SRiybDqA== Received: by mail-lf1-f52.google.com with SMTP id g19so11897201lfr.9 for ; Thu, 30 Mar 2023 08:27:13 -0700 (PDT) X-Gm-Message-State: AAQBX9ekZvpdJsnB8rscKCXk2m9+AfXYydk2NZfvu3nv8SUgG3f0eA6n cLoZJQiK9BQFPfHsHsugJdY+jZnla0MtZ6R/hfk= X-Google-Smtp-Source: AKy350YhgypCX/ir72LpdrIOisRQJnWgfA01NwPamiPOqzgwr8Di2amXHKgkIE8PO+jbP1XHVtoj6ZgHh1JDl7oKvNs= X-Received: by 2002:a19:ad09:0:b0:4eb:dcc:52ce with SMTP id t9-20020a19ad09000000b004eb0dcc52cemr4936003lfc.9.1680190031974; Thu, 30 Mar 2023 08:27:11 -0700 (PDT) MIME-Version: 1.0 References: <20230330151547.1220-1-michael.d.kinney@intel.com> In-Reply-To: <20230330151547.1220-1-michael.d.kinney@intel.com> From: "Ard Biesheuvel" Date: Thu, 30 Mar 2023 17:27:00 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [Patch 1/1] .azurepipelines/templates: Increase run to shell timeout To: devel@edk2.groups.io, michael.d.kinney@intel.com Cc: Sean Brogan , Michael Kubacki , Liming Gao Content-Type: text/plain; charset="UTF-8" On Thu, 30 Mar 2023 at 17:17, Michael D Kinney wrote: > > 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 > Cc: Michael Kubacki > Cc: Liming Gao > Signed-off-by: Michael D Kinney Acked-by: Ard Biesheuvel > --- > .azurepipelines/templates/platform-build-run-steps.yml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml > index 087f460d7fec..8be46cda0e2d 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 > -- > 2.39.1.windows.1 > > > > > >