Skip to content

Commit 7ea2f65

Browse files
authored
Cleanup stack build output in circleci (#1905)
1 parent 88795f6 commit 7ea2f65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ defaults: &defaults
3333
- run:
3434
name: Build (we need the exe for tests)
3535
# need j1, else ghc-lib-parser triggers OOM
36-
command: stack -j 1 --stack-yaml=${STACK_FILE} install
36+
command: stack -j 1 --stack-yaml=${STACK_FILE} install --no-terminal
3737
no_output_timeout: 30m
3838

3939
- run:
4040
name: Build Testsuite without running it
41-
command: stack -j 1 --stack-yaml=${STACK_FILE} build --test --no-run-tests
41+
command: stack -j 1 --stack-yaml=${STACK_FILE} build --test --no-run-tests --no-terminal
4242
no_output_timeout: 30m
4343

4444
- store_artifacts:
@@ -54,7 +54,7 @@ defaults: &defaults
5454

5555
- run:
5656
name: Build including tests
57-
command: stack --stack-yaml=${STACK_FILE} test --no-run-tests
57+
command: stack --stack-yaml=${STACK_FILE} test --no-run-tests --no-terminal
5858
no_output_timeout: 120m
5959

6060
- save_cache:

0 commit comments

Comments
 (0)