|
2 | 2 | # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help |
3 | 3 | on: |
4 | 4 | push: |
5 | | - branches: [main, master] |
| 5 | + branches: [main, master, winarm-deps] |
6 | 6 | pull_request: |
7 | 7 | branches: [main, master] |
8 | 8 |
|
|
18 | 18 | fail-fast: false |
19 | 19 | matrix: |
20 | 20 | config: |
21 | | - - {os: macos-latest, r: 'devel'} |
22 | | - - {os: macos-latest, r: 'release'} |
23 | | - - {os: macos-latest, r: 'oldrel'} |
24 | 21 |
|
25 | 22 | - {os: windows-11-arm } |
26 | | - - {os: windows-latest, r: 'devel'} |
27 | | - - {os: windows-latest, r: 'release'} |
28 | | - - {os: windows-latest, r: 'oldrel'} |
29 | | - |
30 | | - - {os: ubuntu-24.04-arm, r: 'devel'} |
31 | | - - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} |
32 | | - - {os: ubuntu-latest, r: 'release'} |
33 | | - - {os: ubuntu-latest, r: 'oldrel'} |
34 | | - - {os: ubuntu-latest, r: '4.1'} |
35 | | - - {os: ubuntu-latest, r: '4.0'} |
36 | | - - {os: ubuntu-latest, r: '3.6'} |
37 | 23 |
|
38 | 24 | env: |
39 | 25 | GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} |
|
78 | 64 | Remove-Item -Path "R-4.5.0-aarch64.exe" |
79 | 65 | Remove-Item -Path "rtools45-aarch64.exe" |
80 | 66 |
|
81 | | - - name: Install Dependencies (ARM64) |
82 | | - if: matrix.config.os == 'windows-11-arm' |
83 | | - run: | |
84 | | - install.packages(c("tinytest", "knitr", "rmarkdown", "rcmdcheck"), |
85 | | - repos = c("https://r-lib.r-universe.dev", "https://cloud.r-project.org"), |
86 | | - Ncpus = 4); |
87 | | - shell: Rscript {0} |
88 | | - |
89 | 67 | - uses: r-lib/actions/setup-r-dependencies@v2 |
90 | | - if: matrix.config.os != 'windows-11-arm' |
91 | 68 | with: |
92 | 69 | extra-packages: any::rcmdcheck |
93 | 70 | needs: check |
|
0 commit comments