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

Investigate Helix Arm64 timeouts #46243

Draft
wants to merge 2 commits into
base: release/9.0.2xx
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
60 changes: 30 additions & 30 deletions .vsts-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,31 @@ stages:
displayName: Build
jobs:
############### WINDOWS ###############
- template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml@self
parameters:
pool:
name: $(DncEngPublicBuildPool)
demands: ImageOverride -equals windows.vs2022.amd64.open
os: windows
helixTargetQueue: windows.amd64.vs2022.pre.scout.open
# - template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml@self
# parameters:
# pool:
# name: $(DncEngPublicBuildPool)
# demands: ImageOverride -equals windows.vs2022.amd64.open
# os: windows
# helixTargetQueue: windows.amd64.vs2022.pre.scout.open

############### LINUX ###############
- template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml
parameters:
pool:
name: $(DncEngPublicBuildPool)
demands: ImageOverride -equals build.ubuntu.2204.amd64.open
os: linux
helixTargetQueue: ubuntu.2204.amd64.open
# - template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml
# parameters:
# pool:
# name: $(DncEngPublicBuildPool)
# demands: ImageOverride -equals build.ubuntu.2204.amd64.open
# os: linux
# helixTargetQueue: ubuntu.2204.amd64.open

############### MACOS ###############
- template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml
parameters:
pool:
name: Azure Pipelines
vmImage: macOS-latest
os: macOS
helixTargetQueue: osx.13.amd64.open
# - template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml
# parameters:
# pool:
# name: Azure Pipelines
# vmImage: macOS-latest
# os: macOS
# helixTargetQueue: osx.13.amd64.open
### ARM64 ###
- template: /eng/pipelines/templates/jobs/sdk-job-matrix.yml
parameters:
Expand All @@ -72,14 +72,14 @@ stages:
runtimeIdentifier: osx-arm64

############### SOURCE BUILD ###############
- template: /eng/common/templates/job/source-build.yml
parameters:
enableInternalSources: true
platform:
name: Managed
container: centosStream9
jobProperties:
timeoutInMinutes: 30
# - template: /eng/common/templates/job/source-build.yml
# parameters:
# enableInternalSources: true
# platform:
# name: Managed
# container: centosStream9
# jobProperties:
# timeoutInMinutes: 30

############### DOTNET-FORMAT ###############
- template: /eng/dotnet-format/dotnet-format-integration.yml
# - template: /eng/dotnet-format/dotnet-format-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,15 @@ public override bool Execute()
/// <returns></returns>
private async Task ExecuteAsync()
{
HashSet<string> workItemsToInclude = new()
{
"dotnet.Tests.dll.15",
"dotnet-watch.Tests.dll.3",
};

XUnitWorkItems = (await Task.WhenAll(XUnitProjects.Select(PrepareWorkItem)))
.SelectMany(i => i)
.Where(wi => wi != null)
.Where(wi => wi != null && workItemsToInclude.Contains(wi.ItemSpec))
.ToArray();
return;
}
Expand Down