Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Give name to build steps - Jenkins configuration

Do you know of a way / a plug-in to better separate different build steps in Jenkins projects? I used to work with Quickbuild and there I can give a name to each step and in the log I can see which step is currently running.

I have a project that invokes several ant scripts and on failures, I want to catch the exact execution that caused it (so I want to somehow see the step name in the logger).

Thanks, Or.

like image 588
orshachar Avatar asked Jan 22 '12 13:01

orshachar


1 Answers

you can add echo " ---- step N ---- " at the start of each step :)

like image 170
Sergey Grinev Avatar answered Sep 25 '22 11:09

Sergey Grinev