From 99f0210b21cdc27eee117ec7b5cb70a4fb9c6a31 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Wed, 22 Dec 2021 16:13:51 +0000 Subject: [PATCH] monero: fix and stabilise coverage build (#7054) Monero builds has failed in the last 5 out of 7 days, but a bit on-and-off. The reason is a missing yacc binary during unbound compilation, this fixes it. --- projects/monero/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/monero/Dockerfile b/projects/monero/Dockerfile index d8f361983..c4acb664a 100644 --- a/projects/monero/Dockerfile +++ b/projects/monero/Dockerfile @@ -31,7 +31,10 @@ RUN set -ex && \ doxygen \ git \ curl \ + libtool \ libtool-bin \ + flex \ + bison \ autoconf \ automake \ bzip2 \