jax
jax

Reputation: 38643

prevent specific task from running in parallel

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

Answers (1)

Peter Niederwieser
Peter Niederwieser

Reputation: 123960

No such feature currently exists. You could try to work around with synchronized though.

Upvotes: 2

Related Questions