Why Gant does not fail on positive integer returning target?

106 Views Asked by At

When I have the following build.gant

target(example: 'example target') {
  echo(message: "name : ${it.name}, description: ${it.description}")
}

target(alwaysFails: 'never succeed') {
  27
}

If I run gant alwaysFails, the build failed. But if I run gant alwaysFails example, the build succeeded.

Actually I expected build failed and 'example' target did not run.

How can I make gant stop on target failure?

2

There are 2 best solutions below

1
On

I believe you have to make the targets depend on each other, so

target(alwaysFails: 'never succeed') {
  27
}

target(example: 'example target') {
  depends( alwaysFails )
  echo( message: "name : ${it.name}, description: ${it.description}" )
}

Then running:

gant example

Will run alwaysFails and then run example if it succeeds (which it never does). This way I believe you get the functionality you wanted.

0
On

I make the target throws an exception when it has to fail always. It works.

throw new RuntimeException('error message..')