Skip to content

Commit d683ad1

Browse files
authored
Update CI macos fall back value (#845)
* Update CI macos R version fallback value * code-review
1 parent 4cf4aa5 commit d683ad1

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/r-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARCH=$(uname -m)
2121

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

2626
## Optional drat repos, unset by default
2727
DRAT_REPOS=${DRAT_REPOS:-""}

.github/workflows/ci.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,22 @@ env:
1212
jobs:
1313
ci:
1414
strategy:
15+
fail-fast: false
1516
matrix:
1617
include:
17-
- {os: macOS-latest}
18-
- {os: ubuntu-latest}
18+
- {os: macOS-latest, r: '4.5.1' }
19+
- {os: ubuntu-latest, r: 'release'}
1920

2021
runs-on: ${{ matrix.os }}
22+
name: ${{ matrix.os }} (${{ matrix.r }})
2123

2224
steps:
2325
- uses: actions/checkout@v4
2426

2527
- name: System
26-
run: sysctl -a
28+
run: |
29+
sysctl -a
30+
echo "RVER=${{ matrix.r}}" >> $GITHUB_ENV
2731
if: ${{ matrix.os == 'macOS-latest' }}
2832

2933
- name: Bootstrap

0 commit comments

Comments
 (0)