From 66dd2257e3034fe1203b0ed90773836722a3d659 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Wed, 5 Nov 2025 00:04:35 +0000 Subject: [PATCH] 24.03-lts-sp2 update fio to 3.41 --- Others/fio/3.41/24.03-lts-sp2/Dockerfile | 31 ++++++++++++++++++++++++ Others/fio/README.md | 1 + Others/fio/doc/image-info.yml | 3 ++- Others/fio/meta.yml | 3 +++ 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 Others/fio/3.41/24.03-lts-sp2/Dockerfile diff --git a/Others/fio/3.41/24.03-lts-sp2/Dockerfile b/Others/fio/3.41/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..07465c20 --- /dev/null +++ b/Others/fio/3.41/24.03-lts-sp2/Dockerfile @@ -0,0 +1,31 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} as BUILDER +ARG VERSION=3.41 + +RUN dnf update -y && \ + dnf install -y \ + wget \ + gcc \ + make \ + libaio-devel \ + cairo-devel \ + gtk3-devel \ + openssl-devel \ + curl-devel \ + zlib-devel \ + && dnf clean all \ + && rm -rf /var/cache/dnf/* + +WORKDIR /opt + +RUN wget https://github.com/axboe/fio/archive/refs/tags/fio-${VERSION}.tar.gz \ + && tar -zxvf fio-${VERSION}.tar.gz \ + && rm -f fio-${VERSION}.tar.gz + +WORKDIR /opt/fio-fio-${VERSION} + +RUN ./configure --prefix=/usr/local \ + && make -j$(nproc) \ + && make install + +CMD ["fio"] diff --git a/Others/fio/README.md b/Others/fio/README.md index 0418c5f1..51432972 100644 --- a/Others/fio/README.md +++ b/Others/fio/README.md @@ -16,6 +16,7 @@ The tag of each `fio` docker image is consist of the version of `fio` and the ve | Tag | Currently | Architectures | |----------|-------------|------------------| +|[3.41-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/fio/3.41/24.03-lts-sp2/Dockerfile) | fio 3.41 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.40-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/fio/3.40/24.03-lts-sp1/Dockerfile)| FIO 3.40 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Others/fio/doc/image-info.yml b/Others/fio/doc/image-info.yml index 1f25eddf..25c4dba8 100644 --- a/Others/fio/doc/image-info.yml +++ b/Others/fio/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[3.41-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/fio/3.41/24.03-lts-sp2/Dockerfile) | fio 3.41 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[3.40-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/fio/3.40/24.03-lts-sp1/Dockerfile)| FIO 3.40 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -50,4 +51,4 @@ dependency: - openssl - libaio - cairo - - gtk3 + - gtk3 \ No newline at end of file diff --git a/Others/fio/meta.yml b/Others/fio/meta.yml index 03eaffe7..518abd48 100644 --- a/Others/fio/meta.yml +++ b/Others/fio/meta.yml @@ -1,2 +1,5 @@ 3.40-oe2403sp1: path: 3.40/24.03-lts-sp1/Dockerfile + +3.41-oe2403sp2: + path: 3.41/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee