Skip to content

Commit e932cd5

Browse files
committed
CI/CD: change UCX configure flags
1 parent eccdb03 commit e932cd5

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

docker/oshmem_fedora/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ RUN mkdir /home/shmem
55

66
RUN dnf update -y && \
77
dnf install -y git vim wget pkg-config make automake gcc gcc-c++ kernel-devel libtool lbzip2 hwloc hwloc-devel \
8-
pmix pmix-devel libevent libevent-devel python3 python3-devel python3-pip valgrind valgrind-devel && \
8+
pmix pmix-devel libevent libevent-devel python3 python3-devel python3-pip && \
99
dnf clean all
1010

11-
RUN cd $INSTALL_DIR && \
12-
git clone https://github.com/openucx/ucx && \
13-
cd ucx && ./autogen.sh && \
14-
./contrib/configure-devel --prefix=$INSTALL_DIR/ucx-master/install && \
11+
RUN cd $INSTALL_DIR && \
12+
git clone https://github.com/openucx/ucx && \
13+
cd ucx && ./autogen.sh && \
14+
./configure --prefix=$INSTALL_DIR/ucx-master/install && \
1515
make -j && make install
1616

1717
RUN cd $INSTALL_DIR && \

docker/oshmem_ubuntu/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ RUN apt-get update -y && apt-get install -y \
1010
automake \
1111
libtool \
1212
wget \
13-
valgrind \
1413
python3 python3-pip python-is-python3
1514

16-
RUN cd $INSTALL_DIR && \
17-
git clone https://github.com/openucx/ucx && \
18-
cd ucx && ./autogen.sh && \
19-
./contrib/configure-devel --prefix=$INSTALL_DIR/ucx-master/install && \
15+
RUN cd $INSTALL_DIR && \
16+
git clone https://github.com/openucx/ucx && \
17+
cd ucx && ./autogen.sh && \
18+
./configure --prefix=$INSTALL_DIR/ucx-master/install && \
2019
make -j && make install
2120

2221
RUN cd $INSTALL_DIR && \

docker/osss/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ RUN mkdir /home/shmem
55

66
RUN dnf update -y && \
77
dnf install -y git vim wget pkg-config make automake gcc gcc-c++ kernel-devel libtool lbzip2 hwloc hwloc-devel \
8-
pmix pmix-devel libevent libevent-devel python3 python3-devel python3-pip valgrind valgrind-devel && \
8+
pmix pmix-devel libevent libevent-devel python3 python3-devel python3-pip && \
99
dnf clean all
1010

1111
RUN cd $INSTALL_DIR && \
12-
git clone https://github.com/openucx/ucx && \
13-
cd ucx && ./autogen.sh && \
14-
./contrib/configure-devel --prefix=$INSTALL_DIR/ucx-master/install && \
12+
git clone https://github.com/openucx/ucx && \
13+
cd ucx && ./autogen.sh && \
14+
./configure --prefix=$INSTALL_DIR/ucx-master/install && \
1515
make -j && make install
1616

1717
RUN cd $INSTALL_DIR && \

0 commit comments

Comments
 (0)