Add cloudbees folder creation support
Add project folder module. Jenkins folder could be made with project-type: folder This requires Cloudbees folder plugin and python-jenkins folder update (see: https://review.openstack.org/#/c/180185/) Change-Id: I7e1c28c26a69ae6ca736cec88fcb957a716d8fad
This commit is contained in:
parent
3bb56f745e
commit
8bcd0d0bd2
7
doc/source/project_folder.rst
Normal file
7
doc/source/project_folder.rst
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.. _project_folder:
|
||||||
|
|
||||||
|
Folder Project
|
||||||
|
=================
|
||||||
|
|
||||||
|
.. automodule:: project_folder
|
||||||
|
:members:
|
57
jenkins_jobs/modules/project_folder.py
Normal file
57
jenkins_jobs/modules/project_folder.py
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2015 Cisco Systems, Inc.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
|
The folder Project module handles creating Jenkins folder projects.
|
||||||
|
You may specify ``folder`` in the ``project-type`` attribute of
|
||||||
|
the :ref:`Job` definition.
|
||||||
|
|
||||||
|
Requires the Jenkins :jenkins-wiki:`CloudBees Folder Plugin
|
||||||
|
<CloudBees+Folder+Plugin>`.
|
||||||
|
|
||||||
|
Job example:
|
||||||
|
|
||||||
|
.. literalinclude::
|
||||||
|
/../../tests/yamlparser/fixtures/project_folder_template001.yaml
|
||||||
|
|
||||||
|
Job template example:
|
||||||
|
|
||||||
|
.. literalinclude::
|
||||||
|
/../../tests/yamlparser/fixtures/project_folder_template002.yaml
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
import xml.etree.ElementTree as XML
|
||||||
|
import jenkins_jobs.modules.base
|
||||||
|
|
||||||
|
|
||||||
|
class Folder(jenkins_jobs.modules.base.Base):
|
||||||
|
sequence = 0
|
||||||
|
|
||||||
|
def root_xml(self, data):
|
||||||
|
xml_parent = XML.Element('com.cloudbees.hudson.plugins.folder.Folder',
|
||||||
|
plugin="cloudbees-folder")
|
||||||
|
XML.SubElement(xml_parent, 'actions')
|
||||||
|
attributes = {"class": "com.cloudbees.hudson.plugins.folder."
|
||||||
|
"icons.StockFolderIcon"}
|
||||||
|
XML.SubElement(xml_parent, 'icon', attrib=attributes)
|
||||||
|
XML.SubElement(xml_parent, 'views')
|
||||||
|
attributes = {"class": "hudson.views.DefaultViewsTabBar"}
|
||||||
|
XML.SubElement(xml_parent, 'viewsTabBar', attrib=attributes)
|
||||||
|
XML.SubElement(xml_parent, 'primaryView').text = 'All'
|
||||||
|
XML.SubElement(xml_parent, 'healthMetrics')
|
||||||
|
|
||||||
|
return xml_parent
|
@ -44,6 +44,7 @@ jjb.cli.subcommands =
|
|||||||
jenkins_jobs.projects =
|
jenkins_jobs.projects =
|
||||||
externaljob=jenkins_jobs.modules.project_externaljob:ExternalJob
|
externaljob=jenkins_jobs.modules.project_externaljob:ExternalJob
|
||||||
flow=jenkins_jobs.modules.project_flow:Flow
|
flow=jenkins_jobs.modules.project_flow:Flow
|
||||||
|
folder=jenkins_jobs.modules.project_folder:Folder
|
||||||
freestyle=jenkins_jobs.modules.project_freestyle:Freestyle
|
freestyle=jenkins_jobs.modules.project_freestyle:Freestyle
|
||||||
matrix=jenkins_jobs.modules.project_matrix:Matrix
|
matrix=jenkins_jobs.modules.project_matrix:Matrix
|
||||||
maven=jenkins_jobs.modules.project_maven:Maven
|
maven=jenkins_jobs.modules.project_maven:Maven
|
||||||
|
20
tests/yamlparser/fixtures/project_folder_template001.xml
Normal file
20
tests/yamlparser/fixtures/project_folder_template001.xml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<com.cloudbees.hudson.plugins.folder.Folder plugin="cloudbees-folder">
|
||||||
|
<actions/>
|
||||||
|
<icon class="com.cloudbees.hudson.plugins.folder.icons.StockFolderIcon"/>
|
||||||
|
<views/>
|
||||||
|
<viewsTabBar class="hudson.views.DefaultViewsTabBar"/>
|
||||||
|
<primaryView>All</primaryView>
|
||||||
|
<healthMetrics/>
|
||||||
|
<actions/>
|
||||||
|
<description><!-- Managed by Jenkins Job Builder --></description>
|
||||||
|
<keepDependencies>false</keepDependencies>
|
||||||
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
||||||
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
||||||
|
<concurrentBuild>false</concurrentBuild>
|
||||||
|
<canRoam>true</canRoam>
|
||||||
|
<properties/>
|
||||||
|
<scm class="hudson.scm.NullSCM"/>
|
||||||
|
<publishers/>
|
||||||
|
<buildWrappers/>
|
||||||
|
</com.cloudbees.hudson.plugins.folder.Folder>
|
@ -0,0 +1,3 @@
|
|||||||
|
- job:
|
||||||
|
name: folder_test
|
||||||
|
project-type: folder
|
20
tests/yamlparser/fixtures/project_folder_template002.xml
Normal file
20
tests/yamlparser/fixtures/project_folder_template002.xml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<com.cloudbees.hudson.plugins.folder.Folder plugin="cloudbees-folder">
|
||||||
|
<actions/>
|
||||||
|
<icon class="com.cloudbees.hudson.plugins.folder.icons.StockFolderIcon"/>
|
||||||
|
<views/>
|
||||||
|
<viewsTabBar class="hudson.views.DefaultViewsTabBar"/>
|
||||||
|
<primaryView>All</primaryView>
|
||||||
|
<healthMetrics/>
|
||||||
|
<actions/>
|
||||||
|
<description><!-- Managed by Jenkins Job Builder --></description>
|
||||||
|
<keepDependencies>false</keepDependencies>
|
||||||
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
||||||
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
||||||
|
<concurrentBuild>false</concurrentBuild>
|
||||||
|
<canRoam>true</canRoam>
|
||||||
|
<properties/>
|
||||||
|
<scm class="hudson.scm.NullSCM"/>
|
||||||
|
<publishers/>
|
||||||
|
<buildWrappers/>
|
||||||
|
</com.cloudbees.hudson.plugins.folder.Folder>
|
@ -0,0 +1,8 @@
|
|||||||
|
- job-template:
|
||||||
|
name: 'folder-{name}'
|
||||||
|
project-type: folder
|
||||||
|
|
||||||
|
- project:
|
||||||
|
name: test
|
||||||
|
jobs:
|
||||||
|
- 'folder-{name}'
|
Loading…
x
Reference in New Issue
Block a user