dacort commented on pull request #326:
URL: https://github.com/apache/incubator-livy/pull/326#issuecomment-891374655
OK, this reflects what I was seeing locally too. :( There are a couple open
PRs (#318 and #316), but given the lack of activity, not sure those will get
merged in.
I started trying to put together a simple dockerfile to at least be able to
run the tests - I got through almost every one using the example below _except_
for beeline because I think I need due to python2 dependencies.
```dockerfile
FROM openjdk:8
RUN apt-get -y update \
&& apt -y install \
maven \
python3 \
r-base
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
# mvn -Pthriftserver -Pspark-3.0 -DskipITs -Dmaven.javadoc.skip=true -B -V
-e verify -X
```
--
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]