Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ CMAKE=3.26.0
CUDA=11.7.1
DASK=latest
GCC=
HDFS=3.2.1
JDK=11
HDFS=3.5.0
JDK=17
# LLVM 12 and GCC 11 reports -Wmismatched-new-delete.
LLVM=18
MAVEN=3.9.9
Expand Down
4 changes: 2 additions & 2 deletions ci/docker/conda-python-hdfs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG arch_short
ARG python=3.11
FROM --platform=linux/${arch} ${repo}:${arch_short}-conda-python-${python}

ARG jdk=11
ARG jdk=17
ARG maven=3.9.9
RUN mamba install -q -y \
maven=${maven} \
Expand All @@ -30,7 +30,7 @@ RUN mamba install -q -y \
mamba clean --all --yes

# installing libhdfs (JNI)
ARG hdfs=3.2.1
ARG hdfs=3.5.0
ENV HADOOP_HOME=/opt/hadoop-${hdfs} \
HADOOP_OPTS=-Djava.library.path=/opt/hadoop-${hdfs}/lib/native \
PATH=$PATH:/opt/hadoop-${hdfs}/bin:/opt/hadoop-${hdfs}/sbin
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/conda-python-spark.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG arch_short
ARG python=3.11
FROM --platform=linux/${arch} ${repo}:${arch_short}-conda-python-${python}

ARG jdk=11
ARG jdk=17
ARG maven=3.9.9

ARG numpy=latest
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ tasks:
image: conda-python-dask
{% endfor %}

{% for hdfs_version in ["2.9.2", "3.2.1"] %}
{% for hdfs_version in ["2.10.2", "3.5.0"] %}
test-conda-python-3.11-hdfs-{{ hdfs_version }}:
ci: github
Comment thread
raulcd marked this conversation as resolved.
template: docker-tests/github.linux.yml
Expand Down
Loading