Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docker/ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ RUN apt-get update \
vim \
emacs \
wget \
libgl1 \
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Accidental deletion of libgl1? Maybe related to AdditiveFOAM build failure...?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was purposeful - I can't imagine we need to explicitly install it. Error is:

cannot find -lfiniteVolume: No such file or directory
/usr/bin/ld.bfd: cannot find -lmeshTools: No such file or directory

and based on how quick the openfoam build was it seems like nothing was actually compiled there

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, you're right, that is a suspiciously fast openfoam-10 build time. I just manually started a re-run of the CI to see if the error repeats.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok error repeated, so it wasn't just a random build failure.

&& apt-get install -y \
libssl-dev \
libopenmpi-dev \
libscotch-dev \
Expand Down Expand Up @@ -56,6 +54,7 @@ set -o noclobber \
RUN cd /opt/spack-environment \
&& spack env activate . \
&& spack external find \
&& spack --backtrace external find openmpi \
&& spack compiler find \
&& spack install --fail-fast \
&& find -L /opt/views/view/* -type f -exec readlink -f '{}' \; | \
Expand Down
Loading