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 7a90a54df chore: fix R test failures in nightly verification on Ubuntu
(#4285)
7a90a54df is described below
commit 7a90a54df027a7c2fd2a00f082749bf4da6c6139
Author: Bryce Mecum <[email protected]>
AuthorDate: Wed Apr 29 22:00:15 2026 -0700
chore: fix R test failures in nightly verification on Ubuntu (#4285)
The nightly verification job on Ubuntu is failing while verifying the R
packages due to missing libuv1-dev.
https://github.com/apache/arrow-adbc/actions/runs/25074820850/job/73464505942?pr=4284
This is a new breaking change in a dependency used by the R tests so any
system that builds and tests the R packages needs this package or an
equivalent.
See commits from apache/arrow:
70f8c204cb MINOR: [Dev][CI] Install libuv1-dev in dev.yml lint step for
R fs package (#49791)
4feb9bde28 GH-49593: [R][CI] Add libuv-dev to CI jobs due to update to
fs package (#49594)
---
ci/scripts/verify_ubuntu.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/scripts/verify_ubuntu.sh b/ci/scripts/verify_ubuntu.sh
index 27fb7cd35..091479450 100755
--- a/ci/scripts/verify_ubuntu.sh
+++ b/ci/scripts/verify_ubuntu.sh
@@ -56,6 +56,7 @@ main() {
libgtest-dev \
libpq-dev \
libsqlite3-dev \
+ libuv1-dev \
lsb-release \
ninja-build \
pkg-config \