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.
ci: migrate from focal to jammy, el8
Problem: focal CI builds are failing. There seems to be a linkage problem with libjansson in the fluxrm/flux-core:focal image. Move most focal builders to jammy. There seems to be a problem with the configure script generated for ompi 2.x and 3.x in jammy: checking for struct sockaddr_in... yes checking if --with-cuda is set... not set (--with-cuda=) ./configure: line 13031: syntax error near unexpected token `)' ./configure: line 13031: ` )' Move those builders to el8. Tidy up builder descriptions.
- Loading branch information
Showing
2 changed files
with
74 additions
and
14 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 | ||
|