We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfb59ae commit 0f247d4Copy full SHA for 0f247d4
1 file changed
.github/workflows/check-release.yaml
@@ -37,7 +37,8 @@ jobs:
37
with:
38
r-version: ${{ matrix.config.r }}
39
http-user-agent: ${{ matrix.config.http-user-agent }}
40
- use-public-rspm: true
+ # Disable RSPM to avoid missing macOS aarch64 binaries; fall back to CRAN
41
+ use-public-rspm: false
42
43
- name: Install dependencies manually (macOS workaround)
44
if: runner.os == 'macOS'
@@ -46,6 +47,8 @@ jobs:
46
47
options(timeout = 300)
48
# Install remotes and rcmdcheck first
49
install.packages(c("remotes", "rcmdcheck"), type = "binary")
50
+ # Ensure packages without macOS binaries are installed from source
51
+ install.packages(c("base64enc", "later"), type = "source")
52
# Use remotes to install dependencies (handles binary/source fallback)
53
remotes::install_deps(dependencies = TRUE, upgrade = "never")
54
shell: Rscript {0}
0 commit comments