From bb2fa73500f18df381d01996962468de185a0a57 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Mon, 11 Feb 2019 08:36:51 -0800
Subject: [PATCH] CircleCI: show build.log on cabal builds.

---
 .circleci/config.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3304ad264..2c558b7ed 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -54,6 +54,7 @@ commands:
           cd *
           cabal v2-build -j2 --dependencies-only --enable-tests --ghc-options="${GHC_OPTS}" all
           cabal v2-build -j2 --enable-tests --ghc-options="${GHC_OPTS}" all 2>build.log
+          cat build.log
           # fail if we had warnings in local build
           # this is to work around the fact that cabal v2 doesn't allow
           # us to use -Werror for just local build: