This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new e2cc79d [DOCS] Add instructions for download R dependencies
e2cc79d is described below
commit e2cc79d350f5bde529d17d44f71eeac58aaabb25
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Mon Nov 29 03:37:34 2021 +0530
[DOCS] Add instructions for download R dependencies
This commit marks the install and download of R as optional in our guide.
Closes #1468
---
docs/site/install.md | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/docs/site/install.md b/docs/site/install.md
index 50ba1e1..4cdbebe 100644
--- a/docs/site/install.md
+++ b/docs/site/install.md
@@ -83,6 +83,13 @@ sudo add-apt-repository 'deb
https://cloud.r-project.org/bin/linux/ubuntu focal-
sudo apt install r-base
```
+Optionally, you need to install the R depedencies for integration tests, like
this:
+(use `sudo` mode if the script couldn't write to local R library)
+
+```bash
+Rscript ./src/test/scripts/installDependencies.R
+```
+
See [Build the project](#Build%20the%20project) to compile the code from here.
---
@@ -127,6 +134,13 @@ export JAVA_HOME=`/usr/libexec/java_home -v 1.8`
For running all tests [r-base](https://cran.r-project.org/bin/macosx/) has to
be installed as well since this is used as a secondary system to verify the
correctness of our code, but it is not a requirement to enable building the
project.
+Optionally, you need to install the R depedencies for integration tests, like
this:
+(use `sudo` mode if the script couldn't write to local R library)
+
+```bash
+Rscript ./src/test/scripts/installDependencies.R
+```
+
See [Build the project](#Build%20the%20project) to compile the code from here.
---