Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
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