Skip to content

Commit

Permalink
Set resource group env variable early so remove always works
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp authored and azure-sdk committed Oct 16, 2024
1 parent c2f4d36 commit ebe9ffa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions eng/common/TestResources/New-TestResources.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,10 @@ try {
# to determine whether resources should be removed.
Write-Host "Setting variable 'CI_HAS_DEPLOYED_RESOURCES': 'true'"
LogVsoCommand "##vso[task.setvariable variable=CI_HAS_DEPLOYED_RESOURCES;]true"
# Set resource group env variable early in cases where deployment fails as we
# still want to clean up the group. The Remove-TestResources.ps1 script consumes this var.
$envVarName = (BuildServiceDirectoryPrefix $serviceName) + "RESOURCE_GROUP"
LogVsoCommand "##vso[task.setvariable variable=$envVarName;]$ResourceGroupName"
}

Log "Creating resource group '$ResourceGroupName' in location '$Location'"
Expand Down

0 comments on commit ebe9ffa

Please sign in to comment.