This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git
The following commit(s) were added to refs/heads/main by this push:
new 24176464 chore(ci): Add libuv to ubuntu image (#881)
24176464 is described below
commit 241764644f15f9d9a94754b9d28b556666385bd1
Author: Dewey Dunnington <[email protected]>
AuthorDate: Tue May 5 08:34:53 2026 -0500
chore(ci): Add libuv to ubuntu image (#881)
This is causing some CI failures because the fs R package is failing to
build and it's used by some downstream packages.
---
ci/docker/ubuntu.dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/docker/ubuntu.dockerfile b/ci/docker/ubuntu.dockerfile
index 95915fb0..494e0160 100644
--- a/ci/docker/ubuntu.dockerfile
+++ b/ci/docker/ubuntu.dockerfile
@@ -22,7 +22,7 @@ FROM --platform=linux/${NANOARROW_ARCH} ubuntu:latest
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
locales git cmake r-base gnupg curl valgrind gfortran python3-venv
python3-dev doxygen pandoc gcovr \
libxml2-dev libfontconfig1-dev libfreetype6-dev libfribidi-dev
libharfbuzz-dev \
- libjpeg-dev libpng-dev libtiff-dev
+ libjpeg-dev libpng-dev libtiff-dev libuv1-dev
# For Arrow C++
RUN apt-get install -y -V ca-certificates lsb-release wget && \