File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 18
18
packages : write # required for pushing container images
19
19
security-events : write # required for pushing SARIF files
20
20
strategy :
21
+ fail-fast : false
21
22
matrix :
22
23
include :
23
24
- component : discovery
Original file line number Diff line number Diff line change 2
2
# Dockerfile for the iperf benchmarks
3
3
# ####
4
4
5
-
6
5
FROM debian:bookworm-slim
7
6
8
- ARG IPERF_VERSION=2.1.8+dfsg-1
9
7
RUN apt-get update && \
10
- apt-get install -y "iperf=$IPERF_VERSION" && \
8
+ apt-get upgrade && \
9
+ apt-get install -y "iperf" && \
11
10
rm -rf /var/lib/apt/lists/*
12
11
13
12
EXPOSE 5001
Original file line number Diff line number Diff line change 3
3
# https://www.intel.com/content/www/us/en/develop/documentation/imb-user-guide/top.html
4
4
# ####
5
5
6
- FROM rockylinux:9.2
6
+ FROM rockylinux:9.5
7
7
8
- ARG MPITESTS_VERSION=5.8
9
8
RUN yum install -y \
10
9
openssh-clients openssh-server \
11
10
rdma-core ucx-ib ucx-rdmacm \
12
- " mpitests-openmpi-${MPITESTS_VERSION}" && \
11
+ mpitests-openmpi && \
13
12
yum clean all -y && \
14
13
rm -rf /var/cache
15
14
16
15
# Make sure the MPI binaries are on the PATH
17
16
ENV OPENMPI_ROOT=/usr/lib64/openmpi
18
17
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
20
19
21
20
# Install helper scripts
22
21
COPY ./scripts/* /usr/local/bin
Original file line number Diff line number Diff line change 2
2
# Dockerfile for the RDMA bandwidth and latency benchmarks
3
3
# ####
4
4
5
- FROM rockylinux:9.2
5
+ FROM rockylinux:9.5
6
6
7
- ARG PERFTEST_VERSION=4.5.0.20
8
- RUN yum install -y "perftest-${PERFTEST_VERSION}" && \
7
+ RUN yum install -y perftest && \
9
8
yum clean all -y && \
10
9
rm -rf /var/cache
You can’t perform that action at this time.
0 commit comments