зеркало из https://github.com/microsoft/BuildXL.git
24 строки
1.1 KiB
PowerShell
24 строки
1.1 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")
|
|
|
|
[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 |