8b2a65bbe4
[main] Update dependencies from dotnet/arcade - Coherency Updates: - Microsoft.SourceLink.GitHub: from 1.1.0-beta-21228-01 to 1.1.0-beta-21309-01 (parent: Microsoft.DotNet.Arcade.Sdk) - XliffTasks: from 1.0.0-beta.21303.1 to 1.0.0-beta.21305.1 (parent: Microsoft.DotNet.Arcade.Sdk)
55 lines
2.4 KiB
PowerShell
55 lines
2.4 KiB
PowerShell
Param(
|
|
[string] $GuardianCliLocation,
|
|
[string] $Repository,
|
|
[string] $BranchName='master',
|
|
[string] $WorkingDirectory,
|
|
[string] $AzureDevOpsAccessToken,
|
|
[string] $GuardianLoggerLevel='Standard'
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
Set-StrictMode -Version 2.0
|
|
$disableConfigureToolsetImport = $true
|
|
$global:LASTEXITCODE = 0
|
|
|
|
# `tools.ps1` checks $ci to perform some actions. Since the SDL
|
|
# scripts don't necessarily execute in the same agent that run the
|
|
# build.ps1/sh script this variable isn't automatically set.
|
|
$ci = $true
|
|
. $PSScriptRoot\..\tools.ps1
|
|
|
|
# Don't display the console progress UI - it's a huge perf hit
|
|
$ProgressPreference = 'SilentlyContinue'
|
|
|
|
# Construct basic auth from AzDO access token; construct URI to the repository's gdn folder stored in that repository; construct location of zip file
|
|
$encodedPat = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$AzureDevOpsAccessToken"))
|
|
$escapedRepository = [Uri]::EscapeDataString("/$Repository/$BranchName/.gdn")
|
|
$uri = "https://dev.azure.com/dnceng/internal/_apis/git/repositories/sdl-tool-cfg/Items?path=$escapedRepository&versionDescriptor[versionOptions]=0&`$format=zip&api-version=5.0"
|
|
$zipFile = "$WorkingDirectory/gdn.zip"
|
|
|
|
Add-Type -AssemblyName System.IO.Compression.FileSystem
|
|
$gdnFolder = (Join-Path $WorkingDirectory '.gdn')
|
|
|
|
try {
|
|
# if the folder does not exist, we'll do a guardian init and push it to the remote repository
|
|
Write-Host 'Initializing Guardian...'
|
|
Write-Host "$GuardianCliLocation init --working-directory $WorkingDirectory --logger-level $GuardianLoggerLevel"
|
|
& $GuardianCliLocation init --working-directory $WorkingDirectory --logger-level $GuardianLoggerLevel
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-PipelineTelemetryError -Force -Category 'Build' -Message "Guardian init failed with exit code $LASTEXITCODE."
|
|
ExitWithExitCode $LASTEXITCODE
|
|
}
|
|
# We create the mainbaseline so it can be edited later
|
|
Write-Host "$GuardianCliLocation baseline --working-directory $WorkingDirectory --name mainbaseline"
|
|
& $GuardianCliLocation baseline --working-directory $WorkingDirectory --name mainbaseline
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-PipelineTelemetryError -Force -Category 'Build' -Message "Guardian baseline failed with exit code $LASTEXITCODE."
|
|
ExitWithExitCode $LASTEXITCODE
|
|
}
|
|
ExitWithExitCode 0
|
|
}
|
|
catch {
|
|
Write-Host $_.ScriptStackTrace
|
|
Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_
|
|
ExitWithExitCode 1
|
|
}
|