[
https://issues.apache.org/jira/browse/ARROW-9334?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17152306#comment-17152306
]
Kouhei Sutou commented on ARROW-9334:
-------------------------------------
Ah, they are old because {{archery docker push ubuntu-ruby}} pushes only
{{ubuntu-ruby}} image.
https://github.com/apache/arrow/runs/842945967?check_suite_focus=true#step:9:2
[~kszucs] Could you update Archery to push ancestor images of the specified
image too? The following patch may work but I didn't run it:
{noformat}
diff --git a/dev/archery/archery/docker.py b/dev/archery/archery/docker.py
index 23448e6da..65fac3a12 100644
--- a/dev/archery/archery/docker.py
+++ b/dev/archery/archery/docker.py
@@ -271,6 +271,8 @@ class DockerCompose(Command):
.format(image))
raise RuntimeError(msg) from None
else:
+ for ancestor in self.nodes[image]:
+ self._execute_compose('push', ancestor)
self._execute_compose('push', image)
def images(self):
{noformat}
> [Dev][Archery] debian-c-glib and ubuntu-c-glib lack utf8proc
> ------------------------------------------------------------
>
> Key: ARROW-9334
> URL: https://issues.apache.org/jira/browse/ARROW-9334
> Project: Apache Arrow
> Issue Type: Bug
> Components: Archery, C, Developer Tools, GLib
> Reporter: Antoine Pitrou
> Priority: Major
>
> The "debian-c-glib" and "ubuntu-c-glib" docker-compose configurations fail
> with the following message:
> {code:java}
> CMake Error at
> /usr/share/cmake-3.13/Modules/FindPackageHandleStandardArgs.cmake:137
> (message):
> Could NOT find utf8proc (missing: UTF8PROC_LIB UTF8PROC_INCLUDE_DIR)
> Call Stack (most recent call first):
> /usr/share/cmake-3.13/Modules/FindPackageHandleStandardArgs.cmake:378
> (_FPHSA_FAILURE_MESSAGE)
> cmake_modules/Findutf8proc.cmake:41 (find_package_handle_standard_args)
> cmake_modules/ThirdpartyToolchain.cmake:159 (find_package)
> cmake_modules/ThirdpartyToolchain.cmake:2096 (resolve_dependency)
> CMakeLists.txt:467 (include)
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)