From cc790a0ca40b0c5ce7a100b52e6a9e450b6767c7 Mon Sep 17 00:00:00 2001 From: Riccardo Porreca Date: Wed, 9 Mar 2022 15:04:54 +0100 Subject: [PATCH] Revert "No multiarch package installs for r-devel on Windows (#23)" * This should not be an issue anymore on `r-devel`, see #26 and https://github.com/r-lib/actions/issues/339 This reverts commit 3a07928470c0997b2eb883f6c92f8561530b2064. --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a1bfae..7a1be85 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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} @@ -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 @@ -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}