Skip to content

Commit 1d9497b

Browse files
committed
alt2
1 parent 261f91c commit 1d9497b

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/reverse-dependencies.yaml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,16 @@ jobs:
4040

4141
- uses: r-lib/actions/setup-r-dependencies@v2
4242
with:
43-
extra-packages:
44-
local::. github::ecmerkle/blavsam github::stan-dev/cmdstanr github::CraigWangStat/eggCountsExtra github::bbolker/glmmadmb
45-
SparseChol rstanarm emmeans priorsense splines2 RWiener rtdists mice arm R.rsp rjags spdep github::topipa/iwmm
43+
extra-packages: local::.
44+
# local::. github::ecmerkle/blavsam github::stan-dev/cmdstanr github::CraigWangStat/eggCountsExtra github::bbolker/glmmadmb
45+
# SparseChol rstanarm emmeans priorsense splines2 RWiener rtdists mice arm R.rsp rjags spdep github::topipa/iwmm
46+
# Rgraphviz graph jagsUI bindrcpp gganimate gifski transformr
4647

47-
- name: Install additional R dependencies
48-
run: |
49-
install.packages("INLA",repos=c(getOption("repos"),INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE)
50-
install.packages('cmdstanr', repos = c('https://stan-dev.r-universe.dev', 'https://cloud.r-project.org'))
51-
shell: Rscript {0}
48+
#- name: Install additional R dependencies
49+
# run: |
50+
# install.packages("INLA",repos=c(getOption("repos"),INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE)
51+
# install.packages('cmdstanr', repos = c('https://stan-dev.r-universe.dev', 'https://cloud.r-project.org'))
52+
# shell: Rscript {0}
5253

5354
- name: Check reverse dependencies (batch ${{ matrix.batch }})
5455
run: |
@@ -68,7 +69,7 @@ jobs:
6869
mode = "wb"
6970
)
7071
71-
pak::pak(revdep_details[,"Package"], dependencies = TRUE)
72+
install.packages(revdep_details[,"Package"], dependencies = TRUE)
7273
7374
#tools::check_packages_in_dir("./revdepchecks", check_args=c("--no-manual", "--no-vignettes"), Ncpus=3)
7475
for (pkg in file.path(getwd(), "revdepchecks", pkg_tar_names)) {
@@ -79,6 +80,7 @@ jobs:
7980
env=c(
8081
"_R_CHECK_CRAN_INCOMING_"="false",
8182
"_R_CHECK_DONTTEST_EXAMPLES_"="false",
83+
"_R_CHECK_FORCE_SUGGESTS_"="false",
8284
"MAKEFLAGS"="-j4"
8385
)
8486
)

0 commit comments

Comments
 (0)