04bf54ac40
Each job has a manifest in the jenkins_jobs/manifests/jobs directory Jobs are grouped in python_jobs and generic_jobs The job groups or individual jobs can be added to a site manifest Also fixes bad XML output, python27 job and bug 987428 Change-Id: I1ebc889cee08b080deb6ba46aee69ab2ae0bb6b6
65 lines
2.1 KiB
Plaintext
65 lines
2.1 KiB
Plaintext
<?xml version='1.0' encoding='UTF-8'?>
|
|
<project>
|
|
<actions/>
|
|
<description>
|
|
THIS JOB IS MANAGED BY PUPPET AND WILL BE OVERWRITTEN.
|
|
|
|
DON'T EDIT THIS JOB THROUGH THE WEB
|
|
|
|
If you would like to make changes to this job, please see:
|
|
|
|
https://github.com/openstack/openstack-ci-puppet
|
|
|
|
In modules/jenkins_jobs
|
|
</description>
|
|
<%= logrotate %>
|
|
<keepDependencies>false</keepDependencies>
|
|
<properties>
|
|
<com.coravy.hudson.plugins.github.GithubProjectProperty>
|
|
<projectUrl>https://github.com/<%= site %>/<%= project %>/</projectUrl>
|
|
</com.coravy.hudson.plugins.github.GithubProjectProperty>
|
|
<hudson.plugins.throttleconcurrents.ThrottleJobProperty>
|
|
<maxConcurrentPerNode>0</maxConcurrentPerNode>
|
|
<maxConcurrentTotal>0</maxConcurrentTotal>
|
|
<categories/>
|
|
<throttleEnabled>false</throttleEnabled>
|
|
<throttleOption>project</throttleOption>
|
|
<configVersion>1</configVersion>
|
|
</hudson.plugins.throttleconcurrents.ThrottleJobProperty>
|
|
<EnvInjectJobProperty>
|
|
<info>
|
|
<propertiesContent>PROJECT=<%= project %></propertiesContent>
|
|
<loadFilesFromMaster>false</loadFilesFromMaster>
|
|
</info>
|
|
<on>true</on>
|
|
<keepJenkinsSystemVariables>true</keepJenkinsSystemVariables>
|
|
<keepBuildVariables>true</keepBuildVariables>
|
|
<contributors/>
|
|
</EnvInjectJobProperty>
|
|
<hudson.security.AuthorizationMatrixProperty>
|
|
<permission>hudson.model.Item.Build:authenticated</permission>
|
|
</hudson.security.AuthorizationMatrixProperty>
|
|
</properties>
|
|
<% if scm == "" %>
|
|
<scm class="hudson.scm.NullSCM"/>
|
|
<% else %>
|
|
<%= scm %>
|
|
<% end %>
|
|
<assignedNode><%= node_group %></assignedNode>
|
|
<canRoam>false</canRoam>
|
|
<disabled>false</disabled>
|
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
<triggers class="vector">
|
|
<%= triggers %>
|
|
</triggers>
|
|
<concurrentBuild>false</concurrentBuild>
|
|
<builders>
|
|
<%= builders %>
|
|
</builders>
|
|
<publishers>
|
|
<%= publishers %>
|
|
</publishers>
|
|
<buildWrappers/>
|
|
</project>
|