Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ jobs:
- name: Setup
uses: eddelbuettel/github-actions/r-ci@master

# macos-latest moved to arm64 and r-ci's macOS bootstrap stopped
# leaving `remotes` behind. run.sh install_deps calls it directly,
# so the dependency step died before any package code was parsed --
# and with fail-fast on, it cancelled the Linux leg too, which is
# the leg that actually gates these packages.
#
# Guarded on absence: a no-op on Linux, and it deletes itself the
# day upstream ships the fix rather than pinning us to an old image.
- name: Bootstrap remotes
run: >-
Rscript -e 'if (!requireNamespace("remotes", quietly = TRUE))
install.packages("remotes", repos = "https://cloud.r-project.org")'

- name: Dependencies
run: ./run.sh install_deps

Expand Down
Loading