Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove check for unavailabe dependencies on ancient R #6362

Merged
merged 8 commits into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,15 @@ test-lin-dev-clang-cran:

# stated dependency on R
test-lin-ancient-cran:
image: registry.gitlab.com/jangorecki/dockerfiles/r-3.3.0
<<: *test-lin
image: registry.gitlab.com/jangorecki/dockerfiles/r-3.3.0
variables:
_R_CHECK_FORCE_SUGGESTS_: "FALSE" # can be removed if all dependencies are available (knitr, xts, etc.)
script:
- *install-deps
- R CMD check --no-manual $(ls -1t data.table_*.tar.gz | head -n 1)
# knitr requires evaluate, which requires R 3.6.0.
# Restore checking vignettes if upgrading our R dependency means knitr can be installed.
- R CMD check --no-manual --no-build-vignettes --ignore-vignettes $(ls -1t data.table_*.tar.gz | head -n 1)
ben-schwen marked this conversation as resolved.
Show resolved Hide resolved

.test-win-template: &test-win
<<: *test
Expand Down
Loading