mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
11 lines
409 B
PowerShell
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" |