This is an automated email from the ASF dual-hosted git repository.
kou 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 44550e5fc2 GH-50582: [CI][C++] Install missing `simdjson-static` on
Alpine Linux (#50583)
44550e5fc2 is described below
commit 44550e5fc22aaff52c0fdd13f63a0cb48782cc58
Author: Sutou Kouhei <[email protected]>
AuthorDate: Wed Jul 22 09:05:34 2026 +0900
GH-50582: [CI][C++] Install missing `simdjson-static` on Alpine Linux
(#50583)
### Rationale for this change
`simdjson-static` is needed for `find_package(simdjson)` on Alpine Linux
because `simdjsontargets.cmake` refers `libsimdjson.a` but it's included in
`simdjson-static` not `simdjson-dev`.
### What changes are included in this PR?
Install `simdjson-static`.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* GitHub Issue: #50582
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
ci/docker/alpine-linux-3.22-cpp.dockerfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/docker/alpine-linux-3.22-cpp.dockerfile
b/ci/docker/alpine-linux-3.22-cpp.dockerfile
index 89e1884323..fe84e4a73d 100644
--- a/ci/docker/alpine-linux-3.22-cpp.dockerfile
+++ b/ci/docker/alpine-linux-3.22-cpp.dockerfile
@@ -60,6 +60,7 @@ RUN apk add \
rsync \
samurai \
simdjson-dev \
+ simdjson-static \
snappy-dev \
sqlite-dev \
thrift-dev \