diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b3ceec2..579abb2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/README.md b/README.md index 0ce2c6d..27c4f8a 100644 --- a/README.md +++ b/README.md @@ -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: