Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/r-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARCH=$(uname -m)

# Default CRAN repo (use the CDN) and R verssion
CRAN=${CRAN:-"https://cloud.r-project.org"}
RVER=${RVER:-"4.5.1"}
RVER=${RVER:-"4.6.0"}

## Optional drat repos, unset by default
DRAT_REPOS=${DRAT_REPOS:-""}
Expand Down Expand Up @@ -215,7 +215,7 @@ BootstrapLinuxOptions() {

BootstrapMac() {
# Install from latest CRAN binary build for OS X (given ${ARCH} from 'uname -m')
wget ${CRAN}/bin/macosx/big-sur-${ARCH}/base/R-${RVER}-${ARCH}.pkg -O /tmp/R-latest.pkg
wget ${CRAN}/bin/macosx/sonoma-${ARCH}/base/R-${RVER}-${ARCH}.pkg -O /tmp/R-latest.pkg

echo "Installing macOS binary package for R on ${ARCH}"
sudo installer -pkg "/tmp/R-latest.pkg" -target /
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
fail-fast: false
matrix:
include:
- {os: macOS-latest, r: '4.5.1' }
- {os: macOS-latest, r: '4.6.0' }
# The value of `r` for Ubuntu is a placeholder that has no effect. R
# is installed from r2u via APT, and thus corresponds to the current
# release version
- {os: ubuntu-latest, r: 'release'}

runs-on: ${{ matrix.os }}
Expand Down
Loading