mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
16 lines
507 B
PowerShell
16 lines
507 B
PowerShell
################################################################################
|
|
## File: Install-Sbt.ps1
|
|
## Desc: Install sbt for Windows
|
|
################################################################################
|
|
|
|
# Install the latest version of sbt.
|
|
# See https://chocolatey.org/packages/sbt
|
|
Choco-Install -PackageName sbt
|
|
|
|
$env:SBT_HOME="${env:ProgramFiles(x86)}\sbt"
|
|
|
|
# Add sbt binaries to the path
|
|
Add-MachinePathItem "$env:SBT_HOME\bin"
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Sbt"
|