Skip to content

Commit 50cc388

Browse files
committed
Workaround VTK reading bug in CI
Partially addresses #388
1 parent beafe5a commit 50cc388

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docker/actions/Dockerfile.actions.jammy

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ RUN apt-get -y update && \
88
rm -rf /var/cache/apt/archives && \
99
rm -rf /var/lib/apt/lists
1010

11+
# See https://github.com/FluidityProject/fluidity/issues/388
12+
# workaround VTK reading bug with newer versions of libexpat1
13+
# https://bugs.launchpad.net/ubuntu/+source/paraview/+bug/2058415, in particular
14+
# https://bugs.launchpad.net/ubuntu/+source/paraview/+bug/2058415/comments/6
15+
# NOTE: that this downgrade of libexpat1 (which is used in many places by your OS)
16+
# reverts some security patches and is therefore not recommended on your desktop
17+
RUN curl -fsLO http://launchpadlibrarian.net/635321776/libexpat1_2.4.7-1ubuntu0.2_amd64.deb && \
18+
dpkg -i libexpat1_2.4.7-1ubuntu0.2_amd64.deb
19+
20+
1121
RUN adduser fluidity sudo
1222
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
1323

0 commit comments

Comments
 (0)