From a167e95d178b05a7178d014e16405d33dfdcdd4a Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Thu, 23 Jul 2020 10:29:35 +0200 Subject: [PATCH] ci: Run 'make distcheck' on FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Cirrus CI integration was modeled after the Travis CI jobs, but those were limited to macOS where the test suite is currently still broken. FreeBSD can run the full distcheck just fine, so let's do that. Fixes: 6190c14151c3e2cf5c30b9df9131697f5c3b64b9 Signed-off-by: Andrea Bolognani Reviewed-by: Ján Tomko --- ci/cirrus/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/cirrus/build.yml b/ci/cirrus/build.yml index 893e13d724..b7524021b4 100644 --- a/ci/cirrus/build.yml +++ b/ci/cirrus/build.yml @@ -21,6 +21,5 @@ build_task: - mkdir build - cd build - ../autogen.sh --prefix=$(pwd)/install-root - - $MAKE -j3 - - $MAKE -j3 install - - $MAKE -j3 dist + - if test "$(uname)" = "FreeBSD"; then $MAKE -j3 distcheck; fi + - if test "$(uname)" = "Darwin"; then $MAKE -j3 && $MAKE -j3 install && $MAKE -j3 dist; fi