You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run npx turbo run build --concurrency 2 --parallel
Note that only 2 of the 5 tasks run (all build scripts intentionally fail)
Additional context
If the current behavior is desirable, this could just be treated as a documentation issue instead of a bug. IMO though implicitly setting --continue when using --parallel is likely what people expect to happen.
The text was updated successfully, but these errors were encountered:
Verify canary release
Link to code that reproduces this issue
https://github.com/jenseng/turbo-parallel-continue-bug
Which canary version will you have in your reproduction?
[email protected]
Enviroment information
Expected behavior
Specifying the
--parallel
flag should automatically set--continue
to true, as documented here.Actual behavior
Specifying the
--parallel
flag causes turbo to run with the (default)--continue=false
behavior. If any task fails, then no more tasks will be run.In order to ensure all tasks run, you need to explicitly set
--continue
.To Reproduce
npm install
npx turbo run build --concurrency 2 --parallel
build
scripts intentionally fail)Additional context
If the current behavior is desirable, this could just be treated as a documentation issue instead of a bug. IMO though implicitly setting
--continue
when using--parallel
is likely what people expect to happen.The text was updated successfully, but these errors were encountered: