Skip to content

Commit

Permalink
Try not run on arm64 (#25701)
Browse files Browse the repository at this point in the history
* Try not run on arm64

* Add timeouts

* Increase the timeout to 30 min on template tests
  • Loading branch information
rmarinho authored Nov 6, 2024
1 parent e720f1e commit 27c4f79
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions eng/pipelines/common/provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ steps:
xcodebuild -runFirstLaunch
displayName: Select Xcode Version
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
timeoutInMinutes: 30
# Provision Additional Software
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/common/ui-tests-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ steps:
displayName: "Install Appium (Drivers)"
continueOnError: false
retryCountOnTaskFailure: 1
timeoutInMinutes: 10
env:
APPIUM_HOME: $(APPIUM_HOME)
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/handlers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ stages:
vmImage: ${{ BuildPlatform.vmImage }}
demands:
- macOS.Name -equals Sonoma
- macOS.Architecture -equals x64
steps:
- template: common/provision.yml
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static class DotnetInternal
{
static readonly string DotnetRoot = Path.Combine(TestEnvironment.GetMauiDirectory(), ".dotnet");
static readonly string DotnetTool = Path.Combine(DotnetRoot, "dotnet");
const int DEFAULT_TIMEOUT = 900;
const int DEFAULT_TIMEOUT = 1800;

private static string ConstructBuildArgs(string projectFile, string config, string target = "", string framework = "", IEnumerable<string>? properties = null, string binlogPath = "", string runtimeIdentifier = "", bool isPublishing = false)
{
Expand Down

0 comments on commit 27c4f79

Please sign in to comment.