Skip to content

Commit

Permalink
Cleanup stack build output in circleci (#1905)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek committed Jun 9, 2021
1 parent 88795f6 commit 7ea2f65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 7ea2f65

Please sign in to comment.