mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* [Windows] Add more compatible VS2022 VC components * Updated chocolatey installation to use new certificate thumbprint * Azure CosmosDb Emulator SHA256 updated --------- Co-authored-by: Jack Hennessey <jhennessey5225@gmail.com>
11 lines
497 B
PowerShell
11 lines
497 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url "https://aka.ms/cosmosdb-emulator" `
|
|
-ExpectedSHA256Sum "6312237EE3E06C730F8DCFB3D26F5202D9E713C0603039231A72DB56DD2605B4"
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator"
|