Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a git repository where I have created two different jobs in Jenkins (one for production code and one for tools). Where both jobs always are triggered!

I have added Excluded Regions for each jobs to only trigger on each correct folder.

Our git root folder contains the following:

/src/
/tools/
/test/
/doc/
/third party/

In my Source job in Jenkins I have the following Excluded Regions

/tools/.*
/Test Projects/.*
/doc/.*

In my tools job I have the folling Excluded Regions

/src/.*
/Test Projects/.*
/doc/.*

The problem is that if I push a change in doc-folder both jobs are triggered. I don't have any include regions either.

share|improve this question

1 Answer

up vote 3 down vote accepted

This setup should work.

However if you are using Gerrit Triggers in Jenkins the exclude/include regions in GitSCM plugin will not work. In the Gerrit Trigger plugin there is an option to add file paths which will work like an include region, i.e. the build will only get triggered when there is a change in the file path added.

In the Gerrit trigger configuration of your job add a file path like below to include tools directory.

Path tools/**

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.