Skip to content

Commit c2574fc

Browse files
committed
Try to unblock the benchmark containers
1 parent bc20ad6 commit c2574fc

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/workflows/publish-benchmark-images.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
packages: write # required for pushing container images
1919
security-events: write # required for pushing SARIF files
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
include:
2324
- component: discovery

images/iperf/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
# Dockerfile for the iperf benchmarks
33
#####
44

5-
65
FROM debian:bookworm-slim
76

8-
ARG IPERF_VERSION=2.1.8+dfsg-1
97
RUN apt-get update && \
10-
apt-get install -y "iperf=$IPERF_VERSION" && \
8+
apt-get upgrade && \
9+
apt-get install -y "iperf" && \
1110
rm -rf /var/lib/apt/lists/*
1211

1312
EXPOSE 5001

images/mpi-benchmarks/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,19 @@
33
# https://www.intel.com/content/www/us/en/develop/documentation/imb-user-guide/top.html
44
#####
55

6-
FROM rockylinux:9.2
6+
FROM rockylinux:9.5
77

8-
ARG MPITESTS_VERSION=5.8
98
RUN yum install -y \
109
openssh-clients openssh-server \
1110
rdma-core ucx-ib ucx-rdmacm \
12-
"mpitests-openmpi-${MPITESTS_VERSION}" && \
11+
mpitests-openmpi && \
1312
yum clean all -y && \
1413
rm -rf /var/cache
1514

1615
# Make sure the MPI binaries are on the PATH
1716
ENV OPENMPI_ROOT=/usr/lib64/openmpi
1817
ENV PATH=$OPENMPI_ROOT/bin:$PATH
19-
ENV LD_LIBRARY_PATH=$OPENMPI_ROOT/lib:$LD_LIBRARY_PATH
18+
ENV LD_LIBRARY_PATH=$OPENMPI_ROOT/lib
2019

2120
# Install helper scripts
2221
COPY ./scripts/* /usr/local/bin

images/perftest/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
# Dockerfile for the RDMA bandwidth and latency benchmarks
33
#####
44

5-
FROM rockylinux:9.2
5+
FROM rockylinux:9.5
66

7-
ARG PERFTEST_VERSION=4.5.0.20
8-
RUN yum install -y "perftest-${PERFTEST_VERSION}" && \
7+
RUN yum install -y perftest && \
98
yum clean all -y && \
109
rm -rf /var/cache

0 commit comments

Comments
 (0)