Skip to content

Commit 4901968

Browse files
committed
Only one thread for tests
1 parent 1d44a0d commit 4901968

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ defaults: &defaults
6969

7070
- run:
7171
name: Test
72-
command: stack -j 2 --stack-yaml=${STACK_FILE} test --dump-logs
72+
# Tests MUST run with -j1, since multiple ghc-mod sessions are not allowed
73+
command: stack -j 1 --stack-yaml=${STACK_FILE} test --dump-logs
7374
no_output_timeout: 120m
7475

7576
- store_artifacts:

0 commit comments

Comments
 (0)