Skip to content
Draft
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
7 changes: 6 additions & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2044,9 +2044,14 @@ services:
TEST_APT: 0 # would require docker-in-docker
TEST_YUM: 0
USE_CONDA: 1
# Ubuntu 24.04 needs extra tzdata-legacy, unavailable in 22.04 wheel image
command: >
/bin/bash -c "
apt update -y && apt install -y curl git gnupg tzdata wget &&
apt update -y &&
apt install -y curl git gnupg tzdata wget &&
if apt-cache show tzdata-legacy >/dev/null 2>&1; then
apt install -y tzdata-legacy;
fi &&
git config --global --add safe.directory /arrow &&
/arrow/dev/release/verify-release-candidate.sh $${VERIFY_VERSION} $${VERIFY_RC}"

Expand Down
4 changes: 3 additions & 1 deletion dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ tasks:

{% for distribution, version in [("conda", "latest"),
("almalinux", "10"),
("ubuntu", "22.04"),
("ubuntu", "24.04")] %}
{% for target in ["cpp",
"integration",
Expand All @@ -284,6 +283,9 @@ tasks:
params:
env:
{{ distribution.upper() }}: "{{ version }}"
{% if distribution == "conda" %}
UBUNTU: "24.04"
{% endif %}
target: {{ target }}
distro: {{ distribution }}
{% endfor %}
Expand Down
Loading