Skip to content

Commit

Permalink
Pass environment variable to archery command
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Oct 14, 2024
1 parent 158c136 commit 22d2412
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dev/tasks/verify-rc/github.linux.amd64.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ jobs:
{% for key, value in env.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% if distro == "conda" and target == "integration" %}
# JPype doesn't work with Python 3.13.
# See also:
# * https://discuss.python.org/t/api-for-python-3-13-prevents-use-of-3rd-party-gc-allocators/62709/5
# * GH-44386
# * GH-44389
PYTHON_VERSION: "3.12"
{% endif %}
{% endif %}
steps:
{{ macros.github_checkout_arrow(fetch_depth=0)|indent }}
Expand All @@ -49,6 +41,14 @@ jobs:
{% if distro == 'almalinux' and target|upper == 'PYTHON' %}
-e ARROW_GANDIVA=OFF \
{% endif %}
{% if distro == "conda" and target == "integration" %}
# JPype doesn't work with Python 3.13. \
# See also: \
# * https://discuss.python.org/t/api-for-python-3-13-prevents-use-of-3rd-party-gc-allocators/62709/5 \
# * GH-44386 \
# * GH-44389 \
-e PYTHON_VERSION="3.12" \
{% endif %}
-e VERIFY_RC="{{ rc|default("") }}" \
-e TEST_DEFAULT=0 \
-e TEST_{{ target|upper }}=1 \
Expand Down

0 comments on commit 22d2412

Please sign in to comment.