Skip to content

Commit a1377d2

Browse files
Gemini: handle _R_CHECK_DEPENDS_ONLY_ correctly for other.Rraw
1 parent fae95de commit a1377d2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/R-CMD-check-occasional.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
on:
2+
push:
23
schedule:
34
- cron: '17 13 23 * *' # 23rd of month at 13:17 UTC
45
workflow_dispatch:
@@ -85,6 +86,7 @@ jobs:
8586
_R_CHECK_FORCE_SUGGESTS_: false
8687
_R_CHECK_CRAN_INCOMING_REMOTE_: false
8788
_R_CHECK_TESTS_NLINES_: 0
89+
_R_CHECK_DEPENDS_ONLY_: false
8890
run: |
8991
options(crayon.enabled = TRUE)
9092
message("*** Using the following repos for installation ***")
@@ -108,7 +110,8 @@ jobs:
108110
message("Will try and set TEST_DATA_TABLE_WITH_OTHER_PACKAGES=", as.character(run_other), " in R CMD check.")
109111
# IINM rcmdcheck isolates its env from the calling process', besides what's passed to env=
110112
env = c(
111-
TEST_DATA_TABLE_WITH_OTHER_PACKAGES=as.character(run_other)
113+
TEST_DATA_TABLE_WITH_OTHER_PACKAGES=as.character(run_other),
114+
"_R_CHECK_DEPENDS_ONLY_"="false"
112115
)
113116
114117
do_vignettes = requireNamespace("litedown", quietly=TRUE)

0 commit comments

Comments
 (0)