mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:28:59 +08:00
5fa92f467e
* Update PowerShell to 7.3.6 * Add asan install as requested by @Neumann-A * Use 1ES for Android docker hosts. * Update pools. * Update patch tuesday checklist to reflect 1ES. * [openslide] Fix missing header. * [libxt] Add missing header.
58 lines
2.5 KiB
PowerShell
58 lines
2.5 KiB
PowerShell
|
|
function Get-SasToken {
|
|
Param(
|
|
[Parameter(Mandatory=$true)]
|
|
[int]$KeyNumber,
|
|
[Parameter(Mandatory=$true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$ResourceGroupName,
|
|
[Parameter(Mandatory=$true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$StorageAccountName,
|
|
[Parameter(Mandatory=$true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$ContainerName,
|
|
[Parameter(Mandatory=$true)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$Permission
|
|
)
|
|
|
|
$keys = Get-AzStorageAccountKey -ResourceGroupName $ResourceGroupName -Name $StorageAccountName
|
|
$key = $keys[$KeyNumber - 1]
|
|
$ctx = New-AzStorageContext -StorageAccountName $StorageAccountName -StorageAccountKey $key.Value
|
|
$start = Get-Date -AsUTC
|
|
$end = $start.AddDays(90)
|
|
$token = New-AzStorageContainerSASToken -Name $ContainerName -Permission $Permission -StartTime $start -ExpiryTime $end -Context $ctx
|
|
return $token.Substring(1)
|
|
}
|
|
|
|
# Asset Cache:
|
|
# Read, Create, List
|
|
$assetSas = Get-SasToken -KeyNumber 1 -ResourceGroupName vcpkg-asset-cache -StorageAccountName vcpkgassetcacheeastasia -ContainerName cache -Permission rcl
|
|
|
|
# Binary Cache:
|
|
# Read, Create, List, Write
|
|
$binarySas = Get-SasToken -KeyNumber 1 -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycache -ContainerName cache -Permission rclw
|
|
$binaryEASas = Get-SasToken -KeyNumber 1 -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycacheeastasia -ContainerName cache -Permission rclw
|
|
$binaryWUS3as = Get-SasToken -KeyNumber 1 -ResourceGroupName vcpkg-binary-cache -StorageAccountName vcpkgbinarycachewus3 -ContainerName cache -Permission rclw
|
|
|
|
$response = "Asset Cache SAS: Update`n" + `
|
|
"https://dev.azure.com/vcpkg/public/_library?itemType=VariableGroups&view=VariableGroupView&variableGroupId=6&path=vcpkg-asset-caching-credentials`n" + `
|
|
"and`n" + `
|
|
"https://devdiv.visualstudio.com/DefaultCollection/DevDiv/_library?itemType=VariableGroups&view=VariableGroupView&variableGroupId=355&path=vcpkg-asset-caching-credentials`n" + `
|
|
"`n" + `
|
|
"token:`n" + `
|
|
"$assetSas`n" + `
|
|
"`n" + `
|
|
"Binary Cache SAS: Update`n" + `
|
|
"https://dev.azure.com/vcpkg/public/_library?itemType=VariableGroups&view=VariableGroupView&variableGroupId=8&path=vcpkg-binary-caching-credentials`n" + `
|
|
"`n" + `
|
|
"sas-bin:`n" + `
|
|
"$binarySas`n" + `
|
|
"sas-bin-ea:`n" + `
|
|
"$binaryEASas`n" + `
|
|
"sas-bin-wus3:`n" + `
|
|
"$binaryWUS3as`n"
|
|
|
|
Write-Host $response
|