-
Bug
-
Resolution: Fixed
-
Critical
-
None
Using version 0.5, I still get this problem. Using the following flow:
guard { build ("test-a") parallel ( { build("test-b") }, { build("test-c") } ) parallel ( { build("test-d") }, { build("test-e") } ) } rescue { build ("test-f") }
Whenever "test-b" job fails (for example), "test-d" and "test-e" will be executed still. Is there something wrong with the syntax?