mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
58 lines
2.2 KiB
PowerShell
58 lines
2.2 KiB
PowerShell
####################################################################################
|
|
## File: Install-MongoDB.ps1
|
|
## Desc: Install MongoDB
|
|
####################################################################################
|
|
|
|
# Install mongodb package
|
|
$toolsetContent = Get-ToolsetContent
|
|
$toolsetVersion = $toolsetContent.mongodb.version
|
|
|
|
$getMongoReleases = Invoke-WebRequest -Uri "mongodb.com/docs/v$toolsetVersion/release-notes/$toolsetVersion/" -UseBasicParsing
|
|
$targetReleases = $getMongoReleases.Links.href | Where-Object { $_ -like "#$toolsetVersion*---*" }
|
|
|
|
$minorVersions = @()
|
|
foreach ($release in $targetReleases) {
|
|
if ($release -notlike "*upcoming*") {
|
|
$pattern = '\d+\.\d+\.\d+'
|
|
$version = $release | Select-String -Pattern $pattern -AllMatches | ForEach-Object { $_.Matches } | ForEach-Object { $_.Value }
|
|
$minorVersions += $version
|
|
}
|
|
}
|
|
|
|
$latestVersion = $minorVersions[0]
|
|
|
|
Install-Binary `
|
|
-Url "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-$latestVersion-signed.msi" `
|
|
-ExtraInstallArgs @('TARGETDIR=C:\PROGRA~1\MongoDB ADDLOCAL=ALL') `
|
|
-ExpectedSubject 'CN="MONGODB, INC.", O="MONGODB, INC.", L=New York, S=New York, C=US'
|
|
|
|
# Add mongodb to the PATH
|
|
$mongoPath = (Get-CimInstance Win32_Service -Filter "Name LIKE 'mongodb'").PathName
|
|
$mongoBin = Split-Path -Path $mongoPath.split('"')[1]
|
|
Add-MachinePathItem "$mongoBin"
|
|
|
|
# Wait for mongodb service running
|
|
$mongodbService = Get-Service "mongodb"
|
|
$mongodbService.WaitForStatus('Running', '00:01:00')
|
|
|
|
# Stop and disable mongodb service
|
|
Stop-Service $mongodbService
|
|
$mongodbService | Set-Service -StartupType Disabled
|
|
|
|
# Install mongodb shell for mongodb > 5 version
|
|
if (Test-IsWin25) {
|
|
$mongoshVersion = (Get-GithubReleasesByVersion -Repo "mongodb-js/mongosh" -Version "latest").version
|
|
|
|
$mongoshDownloadUrl = Resolve-GithubReleaseAssetUrl `
|
|
-Repo "mongodb-js/mongosh" `
|
|
-Version $mongoshVersion `
|
|
-UrlMatchPattern "mongosh-*-x64.msi"
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url $mongoshDownloadUrl `
|
|
-ExtraInstallArgs @('ALLUSERS=1') `
|
|
-ExpectedSubject 'CN="MongoDB, Inc.", O="MongoDB, Inc.", L=New York, S=New York, C=US'
|
|
}
|
|
|
|
Invoke-PesterTests -TestFile "Databases" -TestName "MongoDB"
|