From 5756598968f559259cd25de23e0316a0bbcf95c5 Mon Sep 17 00:00:00 2001 From: Tom Bamford Date: Thu, 12 Oct 2023 17:55:45 +0100 Subject: [PATCH] devcenter location override for TeamCity --- .teamcity/components/settings.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.teamcity/components/settings.kt b/.teamcity/components/settings.kt index ed4097965467b..779b903e50d11 100644 --- a/.teamcity/components/settings.kt +++ b/.teamcity/components/settings.kt @@ -79,6 +79,9 @@ var serviceTestConfigurationOverrides = mapOf( // data factory uses NC class VMs which are not available in eastus2 "datafactory" to testConfiguration(daysOfWeek = "2,4,6", locationOverride = LocationConfiguration("westeurope", "southeastasia", "westus2", false)), + // Dev Center only available in some regions + "devcenter" to testConfiguration(locationOverride = LocationConfiguration("westeurope", "uksouth", "canadacentral", false)) + // "hdinsight" is super expensive - G class VM's are not available in westus2, quota only available in westeurope currently "hdinsight" to testConfiguration(daysOfWeek = "2,4,6", locationOverride = LocationConfiguration("westeurope", "southeastasia", "eastus2", false)),