Skip to content

Commit

Permalink
lme4 & Matrix compilation from sources for R < 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phgrosjean committed May 23, 2024
1 parent 2f93765 commit 18c8be5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

- name: lme4 and Matrix from source for R before v4.4.0
run: |
if (getRversion() < "4.4.0") {
install.packages("Matrix", type = "source", repos = "https://cloud.r-project.org/")
install.packages("lme4", type = "source", repos = "https://cloud.r-project.org/")
}
shell: Rscript {0}

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true

0 comments on commit 18c8be5

Please sign in to comment.