Skip to content

Commit 8dcef21

Browse files
GHA: Test revdep 'promises' with _R_CHECK_FORCE_SUGGESTS_=false, bc 'otelsdk' requires system dependendance that I cannot be bothered to track down right now
1 parent 88cffd3 commit 8dcef21

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/revdepcheck-top.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- { r: "release", pkg: "future.apply" }
2424
- { r: "release", pkg: "furrr", not_cran: false }
2525
- { r: "release", pkg: "future.tests" }
26-
- { r: "release", pkg: "promises" }
26+
- { r: "release", pkg: "promises" , force_suggests: false }
2727
- { r: "release", pkg: "shiny", not_cran: false }
2828
- { r: "release", pkg: "plumber" }
2929
- { r: "release", pkg: "future.batchtools" , globals: develop, label: 'globals develop' }
@@ -96,6 +96,10 @@ jobs:
9696
export NOT_CRAN=false
9797
fi
9898
echo "NOT_CRAN=${NOT_CRAN:-<not set>}"
99+
if [[ "${{ matrix.config.force_suggests }}" == "false" ]]; then
100+
export _R_CHECK_FORCE_SUGGESTS_=false
101+
fi
102+
echo "_R_CHECK_FORCE_SUGGESTS_=${_R_CHECK_FORCE_SUGGESTS_:-<not set>}"
99103
R CMD check --no-manual --as-cran "$(basename "$url")"
100104
101105
- name: Upload check results

0 commit comments

Comments
 (0)