forked from flux-framework/flux-pmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: focal CI builds are failing. There seems to be a linkage problem with libjansson in the fluxrm/flux-core:focal image. Move forward to jammy and see how that goes.
- Loading branch information
Showing
2 changed files
with
71 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
FROM fluxrm/flux-core:jammy | ||
|
||
ARG USER=fluxuser | ||
ARG UID=1000 | ||
ARG OMPI_BRANCH=v5.0.x | ||
ARG OPENPMIX_BRANCH=v4.2.4 | ||
|
||
RUN \ | ||
if test "$USER" != "fluxuser"; then \ | ||
sudo groupadd -g $UID $USER \ | ||
&& sudo useradd -g $USER -u $UID -d /home/$USER -m $USER \ | ||
&& sudo sh -c "printf \"$USER ALL= NOPASSWD: ALL\\n\" >> /etc/sudoers" \ | ||
&& sudo adduser $USER sudo ; \ | ||
fi | ||
|
||
# remove installed mpich / openmpi / pmix | ||
RUN sudo apt purge -yy mpich libmpich-dev \ | ||
&& sudo apt clean | ||
|
||
# install ompi prereqs | ||
RUN sudo apt-get update \ | ||
&& sudo apt-get -qq install -y --no-install-recommends \ | ||
libevent-dev \ | ||
flex \ | ||
openssh-client \ | ||
&& sudo apt clean \ | ||
&& sudo rm -rf /var/lib/apt/lists/* | ||
|
||
# build/install openpmix | ||
RUN cd /tmp \ | ||
&& git clone -b ${OPENPMIX_BRANCH} \ | ||
--recursive --depth=1 https://github.com/openpmix/openpmix \ | ||
&& cd openpmix \ | ||
&& git branch \ | ||
&& ./autogen.pl \ | ||
&& ./configure --prefix=/usr \ | ||
--enable-debug --disable-sphinx \ | ||
&& make -j $(nproc) \ | ||
&& sudo make install \ | ||
&& cd .. \ | ||
&& rm -rf openpmix | ||
|
||
# build/install ompi | ||
RUN cd /tmp \ | ||
&& git clone -b ${OMPI_BRANCH} \ | ||
--recursive --depth=1 https://github.com/open-mpi/ompi \ | ||
&& cd ompi \ | ||
&& git branch \ | ||
&& ./autogen.pl \ | ||
&& ./configure --prefix=/usr \ | ||
--disable-man-pages --enable-debug --enable-mem-debug \ | ||
--with-pmix=external --with-libevent --disable-sphinx \ | ||
&& make -j $(nproc) \ | ||
&& sudo make install \ | ||
&& cd .. \ | ||
&& rm -rf ompi | ||
|
||
USER $USER | ||
WORKDIR /home/$USER | ||
|