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
12 changes: 12 additions & 0 deletions eng/pipelines/templates/jobs/archetype-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ parameters:
- name: SubscriptionConfiguration
type: string
default: $(sub-config-azure-cloud-test-resources)
- name: TestCanary
type: boolean
default: false
- name: ResourceGroupLocationCanary
type: string
default: "centraluseuap"
- name: ServiceDirectory
type: string
default: not-specified
Expand Down Expand Up @@ -65,6 +71,12 @@ jobs:
- DisplayName: "Test on MacOS"
OSVmImage: "macOS-10.15"
TestTargetFramework: netcoreapp2.1
- ${{ if eq(parameters.TestCanary, 'true') }}:
- DisplayName: "Test on Windows for NetCoreApp - Canary region"
OSVmImage: "windows-2019"
TestTargetFramework: netcoreapp2.1
SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources-preview)
Location: ${{ parameters.ResourceGroupLocationCanary }}
- DisplayName: "Record on Windows for NetCoreApp"
OSVmImage: "windows-2019"
TestMode: Record
Expand Down
3 changes: 2 additions & 1 deletion sdk/eventhub/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ extends:
parameters:
MaxParallel: 6
ServiceDirectory: eventhub
TimeoutInMinutes: 120
TimeoutInMinutes: 120
TestCanary: true