1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 01:50:53 +09:00

SPMI: Increase helix timeout for superpmi-diffs job (#104725)

win-x86 tpdiff is hitting this timeout right towards the end of the last
collection it needs to run over. Up the limit by 2 hours like we did for
the pipeline itself in a33eb5c.
This commit is contained in:
Jakob Botsch Nielsen 2024-07-11 18:34:24 +02:00 committed by GitHub
parent 4dd997dc13
commit 1dbe35131c
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ jobs:
helixType: 'build/tests/' helixType: 'build/tests/'
helixQueues: ${{ join(',', parameters.helixQueues) }} helixQueues: ${{ join(',', parameters.helixQueues) }}
creator: dotnet-bot creator: dotnet-bot
WorkItemTimeout: 3:00 # 3 hours WorkItemTimeout: 5:00 # 5 hours
WorkItemDirectory: '$(WorkItemDirectory)' WorkItemDirectory: '$(WorkItemDirectory)'
CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)' CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)'
helixProjectArguments: '$(Build.SourcesDirectory)/src/coreclr/scripts/superpmi-diffs.proj' helixProjectArguments: '$(Build.SourcesDirectory)/src/coreclr/scripts/superpmi-diffs.proj'

View file

@ -57,7 +57,7 @@
<PropertyGroup> <PropertyGroup>
<WorkItemCommand>$(Python) $(ProductDirectory)/superpmi_diffs.py -type $(SuperPmiDiffType) -base_jit_directory $(ProductDirectory)/base -diff_jit_directory $(ProductDirectory)/diff $(SuperPmiBaseJitOptionsArg) $(SuperPmiDiffJitOptionsArg) -log_directory $(SuperpmiLogsLocation)</WorkItemCommand> <WorkItemCommand>$(Python) $(ProductDirectory)/superpmi_diffs.py -type $(SuperPmiDiffType) -base_jit_directory $(ProductDirectory)/base -diff_jit_directory $(ProductDirectory)/diff $(SuperPmiBaseJitOptionsArg) $(SuperPmiDiffJitOptionsArg) -log_directory $(SuperpmiLogsLocation)</WorkItemCommand>
<WorkItemTimeout>3:00</WorkItemTimeout> <WorkItemTimeout>5:00</WorkItemTimeout>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>