Skip to content

Commit ca78771

Browse files
committed
GH-47045: [CI][C++] Use Fedora 42 instead of 39
1 parent c80c7f5 commit ca78771

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ULIMIT_CORE=-1
4949
ALMALINUX=8
5050
ALPINE_LINUX=3.18
5151
DEBIAN=12
52-
FEDORA=39
52+
FEDORA=42
5353
UBUNTU=22.04
5454

5555
# Default versions for various dependencies
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
ARG arch
19-
FROM ${arch}/fedora:39
19+
FROM ${arch}/fedora:42
2020
ARG arch
2121

2222
# install dependencies
@@ -64,6 +64,7 @@ RUN dnf update -y && \
6464
utf8proc-devel \
6565
wget \
6666
which \
67+
xsimd-devel \
6768
zlib-devel
6869

6970
COPY ci/scripts/install_minio.sh /arrow/ci/scripts/
@@ -107,5 +108,4 @@ ENV ARROW_ACERO=ON \
107108
PARQUET_BUILD_EXAMPLES=ON \
108109
PARQUET_BUILD_EXECUTABLES=ON \
109110
PATH=/usr/lib/ccache/:$PATH \
110-
PYARROW_TEST_GANDIVA=OFF \
111-
xsimd_SOURCE=BUNDLED
111+
PYARROW_TEST_GANDIVA=OFF

dev/tasks/tasks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -766,12 +766,12 @@ tasks:
766766
flags: "-e CMAKE_CXX_STANDARD=20"
767767
image: debian-cpp
768768

769-
test-fedora-39-cpp:
769+
test-fedora-42-cpp:
770770
ci: github
771771
template: docker-tests/github.linux.yml
772772
params:
773773
env:
774-
FEDORA: 39
774+
FEDORA: 42
775775
image: fedora-cpp
776776

777777
{% for cpp_standard in [20] %}
@@ -906,12 +906,12 @@ tasks:
906906
UBUNTU: 24.04
907907
image: ubuntu-python
908908

909-
test-fedora-39-python-3:
909+
test-fedora-42-python-3:
910910
ci: github
911911
template: docker-tests/github.linux.yml
912912
params:
913913
env:
914-
FEDORA: 39
914+
FEDORA: 42
915915
image: fedora-python
916916

917917
test-r-linux-valgrind:

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ services:
722722
# docker compose run --rm fedora-cpp
723723
# Parameters:
724724
# ARCH: amd64, arm64v8, ...
725-
# FEDORA: 39
725+
# FEDORA: 42
726726
image: ${REPO}:${ARCH}-fedora-${FEDORA}-cpp
727727
build:
728728
context: .
@@ -1042,7 +1042,7 @@ services:
10421042
# docker compose run --rm fedora-python
10431043
# Parameters:
10441044
# ARCH: amd64, arm64v8, ...
1045-
# FEDORA: 39
1045+
# FEDORA: 42
10461046
image: ${REPO}:${ARCH}-fedora-${FEDORA}-python-3
10471047
build:
10481048
context: .

python/examples/minimal_build/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
FROM fedora:39
18+
FROM fedora:42
1919

2020
RUN dnf update -y && \
2121
dnf install -y \

0 commit comments

Comments
 (0)