Change By: Jacek Sniecikowski (22/Apr/15 12:45 AM)
Description: Set up a job to monitor all branches (' / \ **' in 'Branches to build') but restrict it to one folder ('Project1/.*' in 'Included Regions').

As long as you make submissions to one branch, the included regions works fine.
However, when you make a change on a different branch, the first job that triggers will ignore included regions and pick up changes from any location. After that the next jobs on the same branch will follow the restrictions correctly until a change on another branch is made.

Here's part of my config.xml:

<scm class="hudson.plugins.git.GitSCM" plugin="git@2.3.5">
  <configVersion>2</configVersion>
  <userRemoteConfigs>
    <hudson.plugins.git.UserRemoteConfig>
      <url>g...@github.com:SomeAccount/1.git</url>
      <credentialsId>ff33d8db-ec3a-48d2-83cd-6d5cbd8f51a4</credentialsId>
    </hudson.plugins.git.UserRemoteConfig>
  </userRemoteConfigs>
  <branches>
    <hudson.plugins.git.BranchSpec>
      <name>**</name>
    </hudson.plugins.git.BranchSpec>
  </branches>
  <doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
  <submoduleCfg class="list"/>
  <extensions>
    <hudson.plugins.git.extensions.impl.PathRestriction>
      <includedRegions>Project1/.*</includedRegions>
      <excludedRegions></excludedRegions>
    </hudson.plugins.git.extensions.impl.PathRestriction>
  </extensions>
</scm>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to