Skip to content

Commit

Permalink
CircleCI: don't parallelize build-steps
Browse files Browse the repository at this point in the history
  • Loading branch information
runeksvendsen authored May 27, 2020
1 parent 2535ce2 commit 7775a5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
command: stack setup
- run:
name: Build library
command: stack build
command: stack build -j1
- run:
name: Build tests
command: stack test --no-run-tests
command: stack test -j1 --no-run-tests
- save_cache:
name: Save cache
key: v3-{{ checksum "package.yaml" }}-{{ checksum "stack.yaml" }}
Expand Down

0 comments on commit 7775a5d

Please sign in to comment.