Skip to content

Commit

Permalink
Update e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredfholgate committed Sep 30, 2024
1 parent 28c5eae commit 728d17c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/end-to-end-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,15 @@ jobs:
"westus3",
"australiaeast"
)
$locationsSingleAvailabilityZone = @(
"ukwest"
)
$jobIndex = ${{ strategy.job-index }}
$locationIndex = $jobIndex % $locations.Length
$location = $locations[$locationIndex]
$location2 = $locationsSingleAvailabilityZone[$locationIndex % $locationsSingleAvailabilityZone.Length]
$enableSelfHostedAgents = "false"
if($selfHostedAgents -eq "public" -or $selfHostedAgents -eq "private") {
Expand Down Expand Up @@ -210,11 +216,11 @@ jobs:
}
$Inputs = @{}
$Inputs["iac"] = $infrastructureAsCode
$Inputs["bootstrap"] = "alz_$versionControlSystemMapped"
$Inputs["starter"] = "test"
$Inputs["iac_type"] = $infrastructureAsCode
$Inputs["bootstrap_module_name"] = "alz_$versionControlSystemMapped"
$Inputs["starter_module_name"] = "test"
$Inputs["bootstrap_location"] = $location
$Inputs["starter_location"] = $location
$Inputs["starter_location"] = [$location, %location2]
$Inputs["bootstrap_subscription_id"] = ""
$Inputs["service_name"] = "alz"
$Inputs["environment_name"] = $uniqueId
Expand Down

0 comments on commit 728d17c

Please sign in to comment.