Hi
I'm using Jenkins 1.483 on my Linux box. I have a query regarding the
Collapsing console section.
My build scripts generates some echo statements like "BEGIN BUILD
COMPONENT1" , "END BUILD COMPONENT1", "BEGIN BUILD COMPONENT2" , "END BUILD
COMPONENT2", "BEGIN TEST COMPONENT1", etc..
I want to have a generic console section which covers all the above. So, I
created a console section with:
Section Name: Build
Section Starts With: ^BEGIN.*
Section Ends With: ^END.*
This works, but I need to have the section name contains the values
captured by the regular expression. How can I do it? I tried using {1},
{2}.. but those does not work. I want to have separate sections for
individual components. Do I have to write my own plugin?
Thanks.