Files
runner-images/images/win/scripts/Installers/Install-R.ps1
Dmitry Shibanov 0e0e62dceb Add R tools for windows (#1264)
* add R for windows

* fix tests

* fix for tests

* remove unused file

* fix doc version for R

Co-authored-by: Dmitry Shibanov <v-dmshib@microsoft.com>
2020-07-27 11:41:47 +03: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"