Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ULIMIT_CORE=-1
ALMALINUX=8
ALPINE_LINUX=3.18
DEBIAN=12
FEDORA=39
FEDORA=42
UBUNTU=22.04

# Default versions for various dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

ARG arch
FROM ${arch}/fedora:39
FROM ${arch}/fedora:42
ARG arch

# install dependencies
Expand Down Expand Up @@ -64,6 +64,7 @@ RUN dnf update -y && \
utf8proc-devel \
wget \
which \
xsimd-devel \
zlib-devel

COPY ci/scripts/install_minio.sh /arrow/ci/scripts/
Expand Down Expand Up @@ -107,5 +108,4 @@ ENV ARROW_ACERO=ON \
PARQUET_BUILD_EXAMPLES=ON \
PARQUET_BUILD_EXECUTABLES=ON \
PATH=/usr/lib/ccache/:$PATH \
PYARROW_TEST_GANDIVA=OFF \
xsimd_SOURCE=BUNDLED
PYARROW_TEST_GANDIVA=OFF
8 changes: 4 additions & 4 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -766,12 +766,12 @@ tasks:
flags: "-e CMAKE_CXX_STANDARD=20"
image: debian-cpp

test-fedora-39-cpp:
test-fedora-42-cpp:
ci: github
template: docker-tests/github.linux.yml
params:
env:
FEDORA: 39
FEDORA: 42
image: fedora-cpp

{% for cpp_standard in [20] %}
Expand Down Expand Up @@ -906,12 +906,12 @@ tasks:
UBUNTU: 24.04
image: ubuntu-python

test-fedora-39-python-3:
test-fedora-42-python-3:
ci: github
template: docker-tests/github.linux.yml
params:
env:
FEDORA: 39
FEDORA: 42
image: fedora-python

test-r-linux-valgrind:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ services:
# docker compose run --rm fedora-cpp
# Parameters:
# ARCH: amd64, arm64v8, ...
# FEDORA: 39
# FEDORA: 42
image: ${REPO}:${ARCH}-fedora-${FEDORA}-cpp
build:
context: .
Expand Down Expand Up @@ -1042,7 +1042,7 @@ services:
# docker compose run --rm fedora-python
# Parameters:
# ARCH: amd64, arm64v8, ...
# FEDORA: 39
# FEDORA: 42
image: ${REPO}:${ARCH}-fedora-${FEDORA}-python-3
build:
context: .
Expand Down
2 changes: 1 addition & 1 deletion python/examples/minimal_build/Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM fedora:39
FROM fedora:42

RUN dnf update -y && \
dnf install -y \
Expand Down
Loading