From 3e1d83bebc8b6cc9f505cc409a1370d41e54228c Mon Sep 17 00:00:00 2001 From: Julian Brost Date: Tue, 22 Feb 2022 14:45:16 +0100 Subject: [PATCH] Actually run tests BoostTestTargets is somewhat strange and seems to just not build or run tests at all when the libboost-test-dev package is missing. --- action.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.Dockerfile b/action.Dockerfile index 7a9e158..5a39c8a 100644 --- a/action.Dockerfile +++ b/action.Dockerfile @@ -30,7 +30,7 @@ ADD action-base.list /etc/apt/sources.list.d/misc.list RUN apt-get update ;\ apt-get install --no-install-{recommends,suggests} -y \ bison cmake docker-ce-cli flex g++ git \ - libboost{,-{context,coroutine,date-time,filesystem,program-options,regex,system,thread}}1.74-dev \ + libboost{,-{context,coroutine,date-time,filesystem,program-options,regex,system,test,thread}}1.74-dev \ libedit-dev libmariadb-dev libpq-dev libssl-dev make nodejs ;\ apt-get install --no-install-{recommends,suggests} -y ccache ;\ apt-get clean ;\