Reputation: 38643
I have a specific task that when run in --parallel
can cause the build to break. Is there anyway to prevent parallel execution on a specific task? I am thinking of something like the synchronized
keyword on the method in Java.
Upvotes: 3
Views: 504
Reputation: 123960
No such feature currently exists. You could try to work around with synchronized
though.
Upvotes: 2