Skip to content

Commit

Permalink
chore: Install SparkR in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaneastwood committed Nov 8, 2023
1 parent bce1b95 commit 0c9bbae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
./run.sh bootstrap
- name: Dependencies
run: ./run.sh install_all
run: |
git clone https://github.com/apache/spark
sh spark/R/install-dev.sh
./run.sh install_all
- name: Test
run: ./run.sh run_tests
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@

## Installation

Before installing `SparkRUtils` you must install `SparkR` since, at the time of writing, `SparkR` is not available on CRAN. To install `SparkR` please follow these instructions:

```r
# install.packages("remotes")
remotes::install_github("apache/spark/R/pkg")
```
Before installing `SparkRUtils` you must install `SparkR` since, at the time of writing, `SparkR` is not available on CRAN. To install `SparkR` please follow [these instructions](https://github.com/apache/spark/tree/master/R/pkg#installing-sparkr).

From there you will be able to install `SparkRUtils` with:

Expand Down

0 comments on commit 0c9bbae

Please sign in to comment.