zeroshade commented on code in PR #1646:
URL: https://github.com/apache/arrow-adbc/pull/1646#discussion_r1536063006
##########
ci/linux-packages/yum/almalinux-8/Dockerfile:
##########
@@ -40,5 +39,10 @@ RUN \
rpmdevtools \
sqlite-devel \
tar \
+ wget \
vala && \
yum clean ${quiet} all
+
+RUN wget --no-verbose https://go.dev/dl/go1.21.8.linux-amd64.tar.gz
+RUN tar -C /usr/local -xzf go1.21.8.linux-amd64.tar.gz
Review Comment:
So doing this I ended up having an issue with the packaging step because the
SPEC file references the golang rpm package but we didn't install it, we're
using this manual installation.
So we'll probably have to update the SPEC file to check if go is installed,
and do something if it isn't or if it's too old of a version.
--
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]