зеркало из https://github.com/microsoft/BuildXL.git
29 строки
1.4 KiB
PowerShell
29 строки
1.4 KiB
PowerShell
Param(
|
|
[Parameter(mandatory=$true)]
|
|
[String]$1esPat,
|
|
[Parameter(mandatory=$true)]
|
|
[String]$cbPat,
|
|
[Parameter(mandatory=$true)]
|
|
[String]$ncPath,
|
|
[Parameter(mandatory=$true)]
|
|
[String]$msEngGitPat,
|
|
[Parameter(mandatory=$true)]
|
|
[String]$args
|
|
)
|
|
[Environment]::SetEnvironmentVariable("1ESSHAREDASSETS_BUILDXL_FEED_PAT", $1esPat, "Process")
|
|
[Environment]::SetEnvironmentVariable("CLOUDBUILD_BUILDXL_SELFHOST_FEED_PAT", $cbPat, "Process")
|
|
[Environment]::SetEnvironmentVariable("MSENG_GIT_PAT", $msEngGitPat, "Process")
|
|
[Environment]::SetEnvironmentVariable("NUGET_CREDENTIALPROVIDERS_PATH", $ncPath, "Process")
|
|
|
|
# NPM authentication requires the PAT to be base64 encoded first
|
|
$cbPatBytes = [System.Text.Encoding]::UTF8.GetBytes($cbPat)
|
|
$b64CloudbuildPat = [Convert]::ToBase64String($cbPatBytes)
|
|
[Environment]::SetEnvironmentVariable("CLOUDBUILD_BUILDXL_SELFHOST_FEED_PAT_B64", $b64CloudbuildPat, "Process")
|
|
|
|
[Environment]::SetEnvironmentVariable(
|
|
"VSS_NUGET_EXTERNAL_FEED_ENDPOINTS",
|
|
<#[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]#>
|
|
"{ `"endpointCredentials`": [ {`"endpoint`":`"https://pkgs.dev.azure.com/1essharedassets/_packaging/BuildXL/nuget/v3/index.json`", `"password`":`"$1esPat`"}, {`"endpoint`":`"https://pkgs.dev.azure.com/cloudbuild/_packaging/BuildXL.Selfhost/nuget/v3/index.json`", `"password`":`"$cbPat`"} ]}",
|
|
"Process")
|
|
|
|
.\RunCheckInTests.cmd /lab $args /internal |