mirror of
https://github.com/actions/runner-images.git
synced 2025-12-17 23:28:57 +00:00
* Version 5 potentially contains breaking changes. Stick to 4.4.7 and announce changes before upgrading to it.
11 lines
527 B
PowerShell
11 lines
527 B
PowerShell
####################################################################################
|
|
## File: Install-MongoDB.ps1
|
|
## Desc: Install MongoDB
|
|
####################################################################################
|
|
|
|
Choco-Install -PackageName mongodb -ArgumentList "--version=4.4.7"
|
|
$mongoPath = (Get-CimInstance Win32_Service -Filter "Name LIKE 'mongodb'").PathName
|
|
$mongoBin = Split-Path -Path $mongoPath.split('"')[1]
|
|
Add-MachinePathItem "$mongoBin"
|
|
|
|
Invoke-PesterTests -TestFile "Databases" -TestName "MongoDB" |