[windows] Add windows-11-arm64 image generation code (#13879)

This commit is contained in:
Shamil Mubarakshin
2026-04-07 17:32:00 +02:00
committed by GitHub
parent c722443db7
commit 1b60920cc9
60 changed files with 1744 additions and 179 deletions
+8 -1
View File
@@ -6,6 +6,13 @@
Install-ChocoPackage R.Project
Install-ChocoPackage rtools
$rscriptPath = Resolve-Path "C:\Program Files\R\*\bin\x64"
if (Test-IsArm64) {
$rscriptPathPattern = "C:\Program Files (x86)\R\*\bin\x64"
} else {
$rscriptPathPattern = "C:\Program Files\R\*\bin\x64"
}
$rscriptPath = Resolve-Path $rscriptPathPattern
Add-MachinePathItem $rscriptPath
Invoke-PesterTests -TestFile "Tools" -TestName "R"