Skip to content

Commit 0e5b8aa

Browse files
gabelevifacebook-github-bot
authored andcommitted
Only run 4 tool tests in parallel on CircleCI linux
Summary: CircleCI's linux run of ./tool test started erroring recently. I ssh'd in and could repro. It worked fine for me with `-p 8` and I saw an ENOMEM at some point. Maybe the containers have fewer resources for some reason. Anyway, let's run only 4 tests at a time to be extra careful. Reviewed By: samwgoldman Differential Revision: D7436531 fbshipit-source-id: 0b8d4cc4bac0acdc4498a868557109925914541c
1 parent aca483d commit 0e5b8aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
command: (cd packages/flow-dev-tools && yarn install | cat) # Force no tty mode
201201
- run:
202202
name: Run tool tests
203-
command: ./tool test --bin bin/linux/flow | cat
203+
command: ./tool test -p 4 --bin bin/linux/flow | cat # Limit parallelism
204204

205205
tool_test_macos:
206206
macos:

0 commit comments

Comments
 (0)