Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup stack build output in circleci #1905

Merged
merged 1 commit into from Jun 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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