Skip to content

Commit

Permalink
Pin openjdk<22
Browse files Browse the repository at this point in the history
  • Loading branch information
danepitkin committed Jun 25, 2024
1 parent 4bb4912 commit 3292e45
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ci/docker/conda-python-substrait.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,16 @@ FROM ${repo}:${arch}-conda-python-${python}
COPY ci/conda_env_python.txt \
ci/conda_env_sphinx.txt \
/arrow/ci/

# Note: openjdk is pinned to <22 because Gradle v8.8 does not
# support Java 22 yet, which is configured by the
# install_substrait_consumer.sh script below.
RUN mamba install -q -y -v \
--file arrow/ci/conda_env_python.txt \
--file arrow/ci/conda_env_sphinx.txt \
$([ "$python" == "3.9" ] && echo "pickle5") \
python=${python} openjdk=17 \
python=${python} \
openjdk"<22" \
nomkl && \
mamba clean --all

Expand Down

0 comments on commit 3292e45

Please sign in to comment.