Add retries to helix failures and re-enable helix as a required workload (#9221)
This commit is contained in:
parent
0a1d68b8f3
commit
c22de8f39c
|
|
@ -13,12 +13,13 @@
|
||||||
<HelixBuild>private-$(USERNAME)</HelixBuild>
|
<HelixBuild>private-$(USERNAME)</HelixBuild>
|
||||||
<HelixBuild Condition=" '$(USERNAME)' == '' ">private-$(USER)</HelixBuild>
|
<HelixBuild Condition=" '$(USERNAME)' == '' ">private-$(USER)</HelixBuild>
|
||||||
<HelixBuild Condition=" '$(CI)' == 'true' ">$(BUILD_BUILDNUMBER)</HelixBuild>
|
<HelixBuild Condition=" '$(CI)' == 'true' ">$(BUILD_BUILDNUMBER)</HelixBuild>
|
||||||
<WaitForWorkItemCompletion Condition=" '$(CI)' == 'true' ">false</WaitForWorkItemCompletion>
|
<WaitForWorkItemCompletion Condition=" '$(CI)' == 'true' ">true</WaitForWorkItemCompletion>
|
||||||
<FailOnMissionControlTestFailure>false</FailOnMissionControlTestFailure>
|
<FailOnMissionControlTestFailure>true</FailOnMissionControlTestFailure>
|
||||||
<EnableAzurePipelinesReporter>true</EnableAzurePipelinesReporter>
|
<EnableAzurePipelinesReporter>true</EnableAzurePipelinesReporter>
|
||||||
<IsExternal>true</IsExternal>
|
<IsExternal>true</IsExternal>
|
||||||
<Creator>aspnetcore</Creator>
|
<Creator>aspnetcore</Creator>
|
||||||
<SkipInvalidConfigurations>true</SkipInvalidConfigurations>
|
<SkipInvalidConfigurations>true</SkipInvalidConfigurations>
|
||||||
|
<MaxRetryCount Condition="'$(MaxRetryCount)' == ''">4</MaxRetryCount>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="Gather" BeforeTargets="Build">
|
<Target Name="Gather" BeforeTargets="Build">
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) .NET Foundation. All rights reserved.
|
// Copyright (c) .NET Foundation. All rights reserved.
|
||||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,8 @@
|
||||||
<TestGroupName>Interop.FunctionalTests</TestGroupName>
|
<TestGroupName>Interop.FunctionalTests</TestGroupName>
|
||||||
<!-- WebDriver is not strong named, so this test assembly cannot be strong-named either. -->
|
<!-- WebDriver is not strong named, so this test assembly cannot be strong-named either. -->
|
||||||
<SignAssembly>false</SignAssembly>
|
<SignAssembly>false</SignAssembly>
|
||||||
|
<!-- See: https://github.com/aspnet/AspNetCore/issues/7299 -->
|
||||||
|
<BuildHelixPayload>false</BuildHelixPayload>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue