-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync eng/common directory with azure-sdk-tools for PR 1515 (#17935)
* Add lease to runs. * Add YAML file. * Remove commented out code. * Move days valid into template with a default. Co-authored-by: Mitch Denny <midenn@microsoft.com>
- Loading branch information
1 parent
f3760fc
commit 6f4a33e
Showing
3 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
parameters: | ||
- name: DaysValid | ||
default: 365 | ||
type: number | ||
|
||
steps: | ||
- task: PowerShell@2 | ||
displayName: Retain pipeline run | ||
condition: ${{ parameters.Condition }} | ||
inputs: | ||
pwsh: true | ||
filePath: $(Build.SourcesDirectory)/eng/common/scripts/Add-RetentionLease.ps1 | ||
arguments: > | ||
-Organization azure-sdk | ||
-Project $(System.TeamProject) | ||
-DefinitionId $(System.DefinitionId) | ||
-RunId $(Build.BuildId) | ||
-OwnerId Pipeline | ||
-DaysValid ${{parameters.DaysValid}} | ||
-Base64EncodedAuthToken $(System.AccessToken) | ||
-Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[CmdletBinding(SupportsShouldProcess = $true)] | ||
param( | ||
[Parameter(Mandatory = $true)] | ||
[string]$Organization, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[string]$Project, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[int]$DefinitionId, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[int]$RunId, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[string]$OwnerId, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[int]$DaysValid, | ||
|
||
[Parameter(Mandatory = $true)] | ||
[string]$Base64EncodedAuthToken | ||
) | ||
|
||
. (Join-Path $PSScriptRoot common.ps1) | ||
|
||
LogDebug "Checking for existing leases on run: $RunId" | ||
$existingLeases = Get-RetentionLeases -Organization $Organization -Project $Project -DefinitionId $DefinitionId -RunId $RunId -OwnerId $OwnerId -Base64EncodedAuthToken $Base64EncodedAuthToken | ||
|
||
if ($existingLeases.count -ne 0) { | ||
LogDebug "Found $($existingLeases.count) leases, will delete them first." | ||
|
||
foreach ($lease in $existingLeases.value) { | ||
LogDebug "Deleting lease: $($lease.leaseId)" | ||
Delete-RetentionLease -Organization $Organization -Project $Project -LeaseId $lease.leaseId -Base64EncodedAuthToken $Base64EncodedAuthToken | ||
} | ||
|
||
} | ||
|
||
LogDebug "Creating new lease on run: $RunId" | ||
$lease = Add-RetentionLease -Organization $Organization -Project $Project -DefinitionId $DefinitionId -RunId $RunId -OwnerId $OwnerId -DaysValid $DaysValid -Base64EncodedAuthToken $Base64EncodedAuthToken | ||
LogDebug "Lease ID is: $($lease.value.leaseId)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters