Files
runner-images-sangeeth/images/windows/scripts/build/Install-R.ps1
2023-11-15 11:24:45 +01:00

11 lines
409 B
PowerShell

################################################################################
## File: Install-R.ps1
## Desc: Install R for Windows
################################################################################
Choco-Install R.Project
Choco-Install rtools
$rscriptPath = Resolve-Path "C:\Program Files\R\*\bin\x64"
Add-MachinePathItem $rscriptPath
Invoke-PesterTests -TestFile "Tools" -TestName "R"