[Windows] Add sbt to Windows 2022 image (#4526)

* [Windows] Add sbt to Windows 2022 image

* Update SoftwareReport.Generator.ps1 to include sbt on Win22
This commit is contained in:
Ewout ter Hoeven
2021-11-22 13:21:03 +01:00
committed by GitHub
parent 0365a15eb6
commit 79dfeeba45
3 changed files with 7 additions and 9 deletions

View File

@@ -124,7 +124,7 @@ Describe "PowerShell Core" {
}
}
Describe "Sbt" -Skip:(Test-IsWin22) {
Describe "Sbt" {
It "sbt" {
"sbt --version" | Should -ReturnZeroExitCode
}
@@ -199,7 +199,7 @@ Describe "Pipx" {
Describe "Kotlin" {
$kotlinPackages = @("kapt", "kotlin", "kotlinc", "kotlin-dce-js", "kotlinc-js", "kotlinc-jvm")
It "<toolName> is available" -TestCases ($kotlinPackages | ForEach-Object { @{ toolName = $_ } }) {
It "<toolName> is available" -TestCases ($kotlinPackages | ForEach-Object { @{ toolName = $_ } }) {
"$toolName -version" | Should -ReturnZeroExitCode
}
}
}