raulcd commented on PR #39729: URL: https://github.com/apache/arrow/pull/39729#issuecomment-1906255804
We can either update the CONAN gcc version to a newer one here: https://github.com/apache/arrow/blob/main/.env#L106 or use the tag `latest` here: https://github.com/apache/arrow/blob/main/docker-compose.yml#L687 with something like `1.62.0` or even `latest`: ```diff diff --git a/docker-compose.yml b/docker-compose.yml index a08345c..b804732 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -684,7 +684,7 @@ services: # CONAN: gcc11, gcc11-armv7, ... # See https://github.com/conan-io/conan-docker-tools#readme for # available images. - image: conanio/${CONAN} + image: conanio/${CONAN}:1.62.0 user: root:root shm_size: *shm-size ulimits: *ulimits ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
