Add vagrant to macOS-12 (#5854)

This commit is contained in:
Mikhail Timofeev
2022-07-04 14:35:52 +04:00
committed by GitHub
parent d5815d8d53
commit d0d2b9239f
3 changed files with 3 additions and 2 deletions

View File

@@ -135,13 +135,13 @@ if ($os.IsLessThanMonterey) {
if ($os.IsCatalina) { if ($os.IsCatalina) {
$utilitiesList += @( $utilitiesList += @(
(Get-VagrantVersion),
(Get-ParallelVersion) (Get-ParallelVersion)
) )
} }
if (-not $os.IsBigSur) { if (-not $os.IsBigSur) {
$utilitiesList += @( $utilitiesList += @(
(Get-VagrantVersion),
(Get-VirtualBoxVersion) (Get-VirtualBoxVersion)
) )
} }

View File

@@ -138,7 +138,7 @@ Describe "wget" {
} }
} }
Describe "vagrant" -Skip:($os.IsHigherThanCatalina) { Describe "vagrant" -Skip:($os.IsBigSur) {
It "vagrant" { It "vagrant" {
"vagrant --version" | Should -ReturnZeroExitCode "vagrant --version" | Should -ReturnZeroExitCode
} }

View File

@@ -161,6 +161,7 @@
], ],
"cask_packages": [ "cask_packages": [
"julia", "julia",
"vagrant",
"virtualbox" "virtualbox"
] ]
}, },