We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0a526 commit 58ce7b7Copy full SHA for 58ce7b7
.github/workflows/rtools44.yaml
@@ -0,0 +1,20 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+jobs:
7
+ build:
8
+ runs-on: windows-11-arm
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
13
+ - name: Install Rtools 4.4 ARM64
14
+ shell: powershell
15
+ run: |
16
+ Invoke-WebRequest -Uri https://cran.r-project.org/bin/windows/Rtools/rtools44/files/rtools44-aarch64-6459-6401.exe -OutFile rtools44-arm64.exe
17
+ Start-Process -FilePath .\rtools44-arm64.exe -ArgumentList "/VERYSILENT", "/SUPPRESSMSGBOXES", "/NORESTART" -Wait
18
+ echo "C:\rtools44\ucrt64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
19
+ strip --version
20
+ pkg-config --version
0 commit comments