This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 293c999 [SPARK-33757][INFRA][R][FOLLOWUP] Provide more simple solution
293c999 is described below
commit 293c999b40e2f55cb0666421fcaabf2468986e02
Author: Kousuke Saruta <[email protected]>
AuthorDate: Sun Dec 13 17:27:39 2020 -0800
[SPARK-33757][INFRA][R][FOLLOWUP] Provide more simple solution
### What changes were proposed in this pull request?
This PR proposes a better solution for the R build failure on GitHub
Actions.
The issue is solved in #30737 but I noticed the following two things.
* We can use the latest `usethis` if we install additional libraries on the
GitHub Actions environment.
* For tests on AppVeyor, `usethis` is not necessary, so I partially revert
the previous change.
### Why are the changes needed?
For more simple solution.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Confirmed on GitHub Actions and AppVeyor on my account.
Closes #30753 from sarutak/followup-SPARK-33757.
Authored-by: Kousuke Saruta <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit b135db3b1a5c0b2170e98b97f6160bcf55903799)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 5 +----
appveyor.yml | 3 ---
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 2559b79..d92195e 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -335,10 +335,7 @@ jobs:
r-version: 4.0
- name: Install R linter dependencies and SparkR
run: |
- sudo apt-get install -y libcurl4-openssl-dev
- # dependencies for usethis 1.6.3.
- sudo Rscript -e "install.packages(c('clipr', 'cli', 'crayon', 'desc',
'fs', 'gh', 'glue', 'purrr', 'rematch2', 'rlang', 'rprojroot', 'whisker',
'withr', 'yaml', 'git2r', 'rstudioapi'), repos='https://cloud.r-project.org/')"
- sudo Rscript -e
"install.packages('https://cran.r-project.org/src/contrib/Archive/usethis/usethis_1.6.3.tar.gz',
repos=NULL, type='source')"
+ sudo apt-get install -y libcurl4-openssl-dev libgit2-dev libssl-dev
libxml2-dev
sudo Rscript -e "install.packages(c('devtools'),
repos='https://cloud.r-project.org/')"
sudo Rscript -e "devtools::install_github('jimhester/[email protected]')"
./R/install-dev.sh
diff --git a/appveyor.yml b/appveyor.yml
index b6a42a0..c40b23c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -41,9 +41,6 @@ cache:
install:
# Install maven and dependencies
- ps: .\dev\appveyor-install-dependencies.ps1
- # usethis and its dependencies
- - cmd: Rscript -e "install.packages(c('clipr', 'cli', 'crayon', 'desc',
'fs', 'gh', 'glue', 'purrr', 'rematch2', 'rlang', 'rprojroot', 'whisker',
'withr', 'yaml', 'git2r', 'rstudioapi'), repos='https://cloud.r-project.org/')"
- - cmd: Rscript -e
"install.packages('https://cran.r-project.org/src/contrib/Archive/usethis/usethis_1.6.3.tar.gz',
repos=NULL, type='source')"
# Required package for R unit tests. xml2 is required to use jUnit reporter
in testthat.
- cmd: Rscript -e "install.packages(c('knitr', 'rmarkdown', 'testthat',
'e1071', 'survival', 'arrow', 'xml2'), repos='https://cloud.r-project.org/')"
- cmd: Rscript -e "pkg_list <- as.data.frame(installed.packages()[,c(1,
3:4)]); pkg_list[is.na(pkg_list$Priority), 1:2, drop = FALSE]"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]