From 7ea2f657b606b373f30bf697255da068325b4346 Mon Sep 17 00:00:00 2001 From: Jan Hrcek <2716069+jhrcek@users.noreply.github.com> Date: Wed, 9 Jun 2021 23:43:04 +0200 Subject: [PATCH] Cleanup stack build output in circleci (#1905) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7257876959..cabf68d6b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,12 +33,12 @@ defaults: &defaults - run: name: Build (we need the exe for tests) # need j1, else ghc-lib-parser triggers OOM - command: stack -j 1 --stack-yaml=${STACK_FILE} install + command: stack -j 1 --stack-yaml=${STACK_FILE} install --no-terminal no_output_timeout: 30m - run: name: Build Testsuite without running it - command: stack -j 1 --stack-yaml=${STACK_FILE} build --test --no-run-tests + command: stack -j 1 --stack-yaml=${STACK_FILE} build --test --no-run-tests --no-terminal no_output_timeout: 30m - store_artifacts: @@ -54,7 +54,7 @@ defaults: &defaults - run: name: Build including tests - command: stack --stack-yaml=${STACK_FILE} test --no-run-tests + command: stack --stack-yaml=${STACK_FILE} test --no-run-tests --no-terminal no_output_timeout: 120m - save_cache: