Re: How to conditionally execute a step based on changeset (multiple paths)?

2020-11-13 Thread geoffroy...@gmail.com
Thanks for the hint, seems multiple changeset entries solution is simple enough in our case. I would go for regex for a more complex use case Regard -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: How to conditionally execute a step based on changeset (multiple paths)?

2020-11-12 Thread Victor Martinez
Hi, The comma is not supported since it does a GLOB match by default. You can use multiple changeset entries in the when or the regexp approach should be another way Cheers On Thursday, 12 November 2020 at 09:39:51 UTC geoffroy...@gmail.com wrote: > Hello > > our repository structure is as

How to conditionally execute a step based on changeset (multiple paths)?

2020-11-12 Thread Geoffroy J
Hello our repository structure is as follow (simplified): /app |-- /linux |-- /win |-- /macos i am trying to execute conditionally a build step based on changeset content into both linux & macos folder, but it is not working properly: when { changeset "*/linux/**,*/macos/**" } Is