mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* 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>
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" |