Skip to content

Commit 84ce02b

Browse files
committed
CI/CD: don't build libevent
1 parent 572a6c8 commit 84ce02b

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

docker/sos_fedora/Dockerfile

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@ RUN dnf update -y && \
1313
ENV CC=gcc
1414
ENV CXX=g++
1515

16-
# Build Libevent
17-
RUN cd $INSTALL_DIR && \
18-
wget -c https://github.com/libevent/libevent/releases/download/release-2.1.10-stable/libevent-2.1.10-stable.tar.gz && \
19-
tar -xzvf libevent-2.1.10-stable.tar.gz && \
20-
cd libevent-2.1.10-stable && \
21-
./autogen.sh && \
22-
./configure --prefix=$INSTALL_DIR/libevent-2.1.10-stable/install && \
23-
make clean all install
24-
2516
# Build Libfabric
2617
RUN cd $INSTALL_DIR && \
2718
git clone -b v1.13.x --depth 10 https://github.com/ofiwg/libfabric.git libfabric && \

docker/sos_ubuntu/Dockerfile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,10 @@ RUN apt-get update -y && apt-get install -y \
1717
libtool \
1818
flex \
1919
libhwloc-dev \
20+
libevent-dev \
2021
mpich \
2122
python3 python3-pip python-is-python3
2223

23-
# Build Libevent
24-
RUN cd $INSTALL_DIR && \
25-
wget -c https://github.com/libevent/libevent/releases/download/release-2.1.10-stable/libevent-2.1.10-stable.tar.gz && \
26-
tar -xzvf libevent-2.1.10-stable.tar.gz && \
27-
cd libevent-2.1.10-stable && \
28-
./autogen.sh && \
29-
./configure --prefix=$INSTALL_DIR/libevent-2.1.10-stable/install && \
30-
make clean all install
31-
3224
# Build Libfabric
3325
RUN cd $INSTALL_DIR && \
3426
git clone -b v1.7.x --depth 10 https://github.com/ofiwg/libfabric.git libfabric && \

0 commit comments

Comments
 (0)