This is an automated email from the ASF dual-hosted git repository.
assignuser pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new a6c12bc282 GH-37614: [R][CI] Update CI jobs due to duckdb repo moving
(#37615)
a6c12bc282 is described below
commit a6c12bc28258c2ac26fae036bd9a9e06c4ab6242
Author: Nic Crane <[email protected]>
AuthorDate: Fri Sep 8 01:43:11 2023 +0100
GH-37614: [R][CI] Update CI jobs due to duckdb repo moving (#37615)
### Rationale for this change
Duckdb have moved the R package to a separate repo
### What changes are included in this PR?
Updates the duckdb R package dev repo
### Are these changes tested?
No
### Are there any user-facing changes?
No
* Closes: #37614
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Jacob Wujciak-Jens <[email protected]>
---
ci/scripts/r_deps.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/scripts/r_deps.sh b/ci/scripts/r_deps.sh
index 50b3043978..2b432f768c 100755
--- a/ci/scripts/r_deps.sh
+++ b/ci/scripts/r_deps.sh
@@ -47,7 +47,7 @@ ${R_BIN} -e "options(warn=2); install.packages('remotes');
remotes::install_cran
# Install DuckDB from github when requested
if [ ${R_DUCKDB_DEV} == "true" ]; then
- ${R_BIN} -e "remotes::install_github('duckdb/duckdb', subdir =
'/tools/rpkg', build = FALSE)"
+ ${R_BIN} -e "remotes::install_github('duckdb/duckdb-r', build = FALSE)"
fi
# Separately install the optional/test dependencies but don't error on them,