Skip to content

Commit

Permalink
Revert "No multiarch package installs for r-devel on Windows (#23)"
Browse files Browse the repository at this point in the history
* This should not be an issue anymore on `r-devel`, see #26 and r-lib/actions#339

This reverts commit 3a07928.
  • Loading branch information
riccardoporreca committed Mar 9, 2022
1 parent ff31714 commit cc790a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Query dependencies
run: |
install.packages("remotes", INSTALL_opts = "${{ matrix.config.multiarch }}")
install.packages('remotes')
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version")
shell: Rscript {0}
Expand All @@ -82,8 +82,8 @@ jobs:
- name: Install dependencies
run: |
remotes::install_deps(dependencies = TRUE, INSTALL_opts = "${{ matrix.config.multiarch }}")
remotes::install_cran("rcmdcheck", INSTALL_opts = "${{ matrix.config.multiarch }}")
remotes::install_deps(dependencies = TRUE)
remotes::install_cran("rcmdcheck")
shell: Rscript {0}

- name: Check
Expand All @@ -106,6 +106,6 @@ jobs:
- name: Test coverage
if: success() && runner.os == 'Linux' && matrix.config.r == 'release'
run: |
remotes::install_cran("covr", INSTALL_opts = "${{ matrix.config.multiarch }}")
remotes::install_cran("covr")
covr::codecov(type = "all")
shell: Rscript {0}

0 comments on commit cc790a0

Please sign in to comment.