mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-09 12:15:56 +00:00
e256b73f3b
This is my latest salvo in trying to fix the persistent CI flakes we've been having. They center on flow failing with `Out of retries, exiting!`. Here's a representative failure [1]. My approach here is based on a discussion in a [GitHub thread] which suggests that setting `server.max_workers=1` in the config can fix it. Unfortunately, since it's in the flowconfig and is not a command line option, I needed to fork the flowconfig into a CI and non-CI version. Test plan: Merge it, and see if the flake goes away. [1]: https://circleci.com/gh/sourcecred/sourcecred/1609?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link [GitHub thread]: https://github.com/atlassian/react-beautiful-dnd/issues/1007
17 lines
218 B
Plaintext
17 lines
218 B
Plaintext
# If modifying this file, please modify .flowconfig too!
|
|
[ignore]
|
|
|
|
[include]
|
|
|
|
[libs]
|
|
flow-typed
|
|
|
|
[lints]
|
|
|
|
[options]
|
|
suppress_comment=\\(.\\|\n\\)*\\$ExpectFlowError
|
|
include_warnings=true
|
|
server.max_workers=1
|
|
|
|
[strict]
|