You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2021/04/01 19:21:09 UTC

[spark] branch branch-3.1 updated: [SPARK-24931][INFRA] Fix the GA failure related to R linter

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 8c9b942  [SPARK-24931][INFRA] Fix the GA failure related to R linter
8c9b942 is described below

commit 8c9b942f13cebbaaa281545ca6a821f0ca75d7b6
Author: Kousuke Saruta <sa...@oss.nttdata.com>
AuthorDate: Thu Apr 1 12:04:19 2021 -0700

    [SPARK-24931][INFRA] Fix the GA failure related to R linter
    
    ### What changes were proposed in this pull request?
    
    This PR fixes the GA failure related to R linter which happens on some PRs (e.g. #32023, #32025).
    The reason seems `Rscript -e "devtools::install_github('jimhester/lintrv2.0.0')"` fails to download `lintrv2.0.0`.
    I don't know why but I confirmed we can download `v2.0.1`.
    
    ### Why are the changes needed?
    
    To keep GA healthy.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    GA itself.
    
    Closes #32028 from sarutak/hotfix-r.
    
    Authored-by: Kousuke Saruta <sa...@oss.nttdata.com>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
    (cherry picked from commit f99a831dabfe043aa391be660f1404b657d0ca77)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .github/workflows/build_and_test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 0d36abe..6018497 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -331,7 +331,7 @@ jobs:
       run: |
         apt-get install -y libcurl4-openssl-dev libgit2-dev libssl-dev libxml2-dev
         Rscript -e "install.packages(c('devtools'), repos='https://cloud.r-project.org/')"
-        Rscript -e "devtools::install_github('jimhester/lintr@v2.0.0')"
+        Rscript -e "devtools::install_github('jimhester/lintr@v2.0.1')"
         ./R/install-dev.sh
     - name: Install dependencies for documentation generation
       run: |

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