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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new a3c0b1d8 fix(dev/release): install openssl explicitly for R CMD check 
(#1427)
a3c0b1d8 is described below

commit a3c0b1d83a58a5b02325f69f7b31aa31a5ea6393
Author: David Li <[email protected]>
AuthorDate: Wed Jan 3 11:45:13 2024 -0500

    fix(dev/release): install openssl explicitly for R CMD check (#1427)
    
    Appears to be required transitively by Snowflake.
    
    Fixes #1425.
---
 dev/release/verify-release-candidate.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index a512046a..40e087ab 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -481,6 +481,7 @@ test_r() {
   mkdir "${ARROW_TMPDIR}/r/tmplib"
 
   R_LIBS_USER="${ARROW_TMPDIR}/r/tmplib" R -e 'install.packages("nanoarrow", 
repos = "https://cloud.r-project.org/";)' --vanilla
+  R_LIBS_USER="${ARROW_TMPDIR}/r/tmplib" R -e 'install.packages("openssl", 
repos = "https://cloud.r-project.org/";)' --vanilla
   R_LIBS_USER="${ARROW_TMPDIR}/r/tmplib" R -e 'if 
(!requireNamespace("testthat", quietly = TRUE)) install.packages("testthat", 
repos = "https://cloud.r-project.org/";)' --vanilla
   R CMD INSTALL "${ADBC_SOURCE_DIR}/r/adbcdrivermanager" --preclean 
--library="${ARROW_TMPDIR}/r/tmplib"
   R CMD INSTALL "${ADBC_SOURCE_DIR}/r/adbcsqlite" --preclean 
--library="${ARROW_TMPDIR}/r/tmplib"

Reply via email to