Skip to content

Commit 6a074ba

Browse files
authored
ci: R CMD check on arm64 windows (#26)
1 parent 160e587 commit 6a074ba

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ jobs:
2424
- { os: ubuntu-latest, r: 'release' }
2525
- { os: ubuntu-latest, r: 'oldrel-1' }
2626
- { os: ubuntu-24.04-arm, r: 'release' }
27+
- { os: windows-11-arm, r: 'release' }
2728

2829
env:
2930
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
3031
R_KEEP_PKG_SOURCE: yes
3132

3233
steps:
3334
- name: Add more rust targets
34-
if: runner.os == 'windows'
35-
run: rustup target add x86_64-pc-windows-gnu
35+
if: ${{ runner.os == 'windows' && runner.arch == 'ARM64' }}
36+
run: rustup target add aarch64-pc-windows-gnullvm
3637

3738
- uses: actions/checkout@v3
3839

0 commit comments

Comments
 (0)