Skip to content
Merged
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
21 changes: 16 additions & 5 deletions build-tools/automation/azure-pipelines-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ stages:
parameters:
emulatorMSBuildArgs: -p:TestAvdExtraBootArgs=-writable-system
jobName: SystemApplicationTests
jobTimeout: 120
testSteps:
- template: run-nunit-tests.yaml
parameters:
Expand All @@ -173,13 +174,18 @@ stages:
- job: mac_timezoneinfo_tests
displayName: TimeZoneInfoTests Emulator Tests
strategy:
parallel: 4
parallel: 3
pool:
vmImage: $(HostedMacImage)
name: VSEng-VSMac-Xamarin-Shared
demands:
- macOS.Name -equals Ventura
- macOS.Architecture -equals x64
timeoutInMinutes: 120
workspace:
clean: all
steps:
- template: agent-cleanser/v1.yml@yaml-templates

- template: yaml-templates/setup-test-environment.yaml
parameters:
installTestSlicer: true
Expand Down Expand Up @@ -221,13 +227,18 @@ stages:
- job: mac_localization_tests
displayName: Localization Emulator Tests
strategy:
parallel: 10
parallel: 6
pool:
vmImage: $(HostedMacImage)
name: VSEng-VSMac-Xamarin-Shared
demands:
- macOS.Name -equals Ventura
- macOS.Architecture -equals x64
timeoutInMinutes: 150
workspace:
clean: all
steps:
- template: agent-cleanser/v1.yml@yaml-templates

- template: yaml-templates/setup-test-environment.yaml
parameters:
installTestSlicer: true
Expand All @@ -249,7 +260,7 @@ stages:
parameters:
testAssembly: $(System.DefaultWorkingDirectory)/bin/Test$(XA.Build.Configuration)/MSBuildDeviceIntegration/$(DotNetStableTargetFramework)/MSBuildDeviceIntegration.dll
testFilter: method == CheckLocalizationIsCorrectWithSlicer
testRunTitle: CheckTimeZoneInfoIsCorrect On Device - macOS
testRunTitle: CheckLocalizationIsCorrect On Device - macOS

- template: yaml-templates/upload-results.yaml
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ jobs:
- job: mac_${{ parameters.jobName }}_tests
displayName: ${{ parameters.jobName }} Emulator Tests
pool:
vmImage: $(HostedMacImage)
name: VSEng-VSMac-Xamarin-Shared
demands:
- macOS.Name -equals Ventura
- macOS.Architecture -equals x64
timeoutInMinutes: ${{ parameters.jobTimeout }}
workspace:
clean: all
steps:
- template: agent-cleanser/v1.yml@yaml-templates

- template: setup-test-environment.yaml
parameters:
installLegacyDotNet: false
Expand Down