This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 6c25ce383d1 [SPARK-40116][R][INFRA] Pin Arrow version to 8.0.0 in 
AppVeyor
6c25ce383d1 is described below

commit 6c25ce383d1408884366eb6cf22f302e6b2d8864
Author: Hyukjin Kwon <gurwls...@apache.org>
AuthorDate: Wed Aug 17 15:34:20 2022 +0900

    [SPARK-40116][R][INFRA] Pin Arrow version to 8.0.0 in AppVeyor
    
    ### What changes were proposed in this pull request?
    
    This PR proposes to remoove the Arrow in AppVeyor for now to recover the 
build.
    
    ### Why are the changes needed?
    
    SparkR does not support Arrow 9.0.0 
([SPARK-40114](https://issues.apache.org/jira/browse/SPARK-40114)) so the tests 
fail (https://ci.appveyor.com/project/HyukjinKwon/spark/builds/44490387)
    
    Should recover the tests first because it looks it's going to take a while 
to add the Arrow 9.0.0 support.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, dev-only.
    
    ### How was this patch tested?
    
    CI in this PR should test it out.
    
    Closes #37546 from HyukjinKwon/SPARK-40116.
    
    Lead-authored-by: Hyukjin Kwon <gurwls...@apache.org>
    Co-authored-by: Hyukjin Kwon <gurwls...@gmail.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 appveyor.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/appveyor.yml b/appveyor.yml
index 1a2aef0d3b8..3ec79645697 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -42,7 +42,8 @@ install:
   # Install SBT and dependencies
   - ps: .\dev\appveyor-install-dependencies.ps1
   # 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/')"
+  # TODO(SPARK-40114): Add 'arrow' back with supporting Arrow 9.0.0
+  - cmd: Rscript -e "install.packages(c('knitr', 'rmarkdown', 'testthat', 
'e1071', 'survival', '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]"
 
 build_script:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to