Skip to content

Commit

Permalink
Add flex and bison to docker containers
Browse files Browse the repository at this point in the history
They are now needed for unit tests.
  • Loading branch information
lunacd committed Jul 22, 2024
1 parent ba71208 commit a40f340
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/docker/rockylinux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ RUN dnf update -y && \
expected-devel \
gtest-devel \
fmt-devel \
cli11-devel && \
cli11-devel \
flex \
bison && \
dnf clean all
RUN update-alternatives --install /usr/local/bin/python python /usr/bin/python3.11 10
# Install meson from pip
Expand Down
4 changes: 3 additions & 1 deletion tests/docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ RUN apt-get update && \
libexpected-dev \
libgtest-dev \
libfmt-dev \
libcli11-dev && \
libcli11-dev \
flex \
bison && \
apt-get clean
RUN update-alternatives --install /usr/local/bin/python python /usr/bin/python3.11 10
# Install meson from pip
Expand Down

0 comments on commit a40f340

Please sign in to comment.