You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by th...@apache.org on 2022/04/28 22:10:52 UTC

[arrow] branch master updated: ARROW-16375: [R][CI] Pin test-r-devdocs on Windows to R 4.1

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 564eb97a09 ARROW-16375: [R][CI] Pin test-r-devdocs on Windows to R 4.1
564eb97a09 is described below

commit 564eb97a0995f8d896af0ba67239fa010f301c9b
Author: Nic Crane <th...@gmail.com>
AuthorDate: Thu Apr 28 23:10:42 2022 +0100

    ARROW-16375: [R][CI] Pin test-r-devdocs on Windows to R 4.1
    
    Closes #13011 from thisisnic/ARROW-16375_pin_build_4.1
    
    Lead-authored-by: Nic Crane <th...@gmail.com>
    Co-authored-by: Nicola Crane <th...@gmail.com>
    Signed-off-by: Nic Crane <th...@gmail.com>
---
 dev/tasks/r/github.devdocs.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev/tasks/r/github.devdocs.yml b/dev/tasks/r/github.devdocs.yml
index 17b49ddc4f..089953f88a 100644
--- a/dev/tasks/r/github.devdocs.yml
+++ b/dev/tasks/r/github.devdocs.yml
@@ -31,8 +31,13 @@ jobs:
     steps:
       {{ macros.github_checkout_arrow()|indent }}
 
-      - uses: r-lib/actions/setup-r@v1
-      - uses: r-lib/actions/setup-pandoc@v1
+      - uses: r-lib/actions/setup-r@v2
+        with:
+          # temp workaround the fact that R 4.2 requires UCRT which isn't
+          # currently part of this build.
+          # remove after https://issues.apache.org/jira/browse/ARROW-16376
+          r-version: '4.1'
+      - uses: r-lib/actions/setup-pandoc@v2
       - name: Install knitr, rmarkdown
         run: |
           install.packages(c("rmarkdown", "knitr", "sessioninfo"))