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

[Event Hubs] Canary support for live tests #15265

Merged
merged 4 commits into from
Sep 29, 2020
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