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

#772: Added check of installation of R packages #1021

Merged
merged 3 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .current_gitmodules

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions doc/changes/changes_9.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ This release uses version 1.0.0 of the container tool.
- #958: Fix conda version conflict
- #1014: Fixed Push Docker Test Container workflow
- #1017: Implemented a GH workflow which validates correct target branch of PR
- #772: Added check of installation of R packages

## Doc

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY flavor_customization/packages/python3_pip_packages /build_info/packages/fla
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_customization/python3_pip_packages --python-binary python3 --with-versions --allow-no-version --ignore-installed --ancestor-pip-package-root-path /build_info/packages

COPY flavor_customization/packages/r_cran_packages /build_info/packages/flavor_customization
RUN /scripts/install_scripts/install_via_r_remotes.pl --file /build_info/packages/flavor_customization/r_cran_packages --rscript-binary Rscript --with-versions --allow-no-version
RUN /scripts/install_scripts/install_via_r_remotes.pl --file /build_info/packages/flavor_customization/r_cran_packages --rscript-binary Rscript --with-versions --allow-no-version --no-version-validation

##########################################################################
##########################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# If a line starts with # the whole line is a comment, however you can
# also start a comment after the package definition.

stringr|1.4.0
#mlr3|0.21.1
tomuben marked this conversation as resolved.
Show resolved Hide resolved