From d514f1480cffb81850ef212155c66ee9e0383350 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 12 Jan 2018 10:55:44 +0100 Subject: [PATCH] [circleci] cat test logs on failure on autotools-based builds --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 874c587d5..6f9a5c42d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ jobs: - checkout - run: apk update && apk add ragel make pkgconfig libtool autoconf automake gettext gcc g++ glib-dev freetype-dev cairo-dev - run: ./autogen.sh - - run: make && make check + - run: make && (make check || (cat `find -name '*.log'` && false)) archlinux: docker: @@ -27,7 +27,7 @@ jobs: - checkout - run: pacman --noconfirm -Syu freetype2 cairo icu gettext gobject-introspection gcc gcc-libs glib2 graphite pkg-config ragel - run: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 - - run: make && make check + - run: make && (make check || (cat `find -name '*.log'` && false)) fedora-outoftreebuild: docker: @@ -36,7 +36,7 @@ jobs: - checkout - run: dnf install -y pkg-config ragel gcc gcc-c++ automake autoconf libtool make which glib2-devel freetype-devel cairo-devel libicu-devel gobject-introspection-devel graphite2-devel redhat-rpm-config || true - run: NOCONFIGURE=1 ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 - - run: mkdir build && cd build && ../configure && make && make check + - run: mkdir build && cd build && ../configure && make && (make check || (cat `find -name '*.log'` && false)) cmake-gcc: docker: