feature: initial commit for all new image changes

This commit is contained in:
Subir Ghosh
2024-11-13 17:16:01 -07:00
parent de6aa9e70e
commit fcf3d0ac96
1042 changed files with 45086 additions and 1 deletions
@@ -0,0 +1,15 @@
################################################################################
## File: Install-Sbt.ps1
## Desc: Install sbt for Windows
################################################################################
# Install the latest version of sbt.
# See https://chocolatey.org/packages/sbt
Install-ChocoPackage 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"