Merge "Wrapper pre-scm-buildstep: added support for failOnError parameter"
This commit is contained in:
commit
4f77324fea
@ -1402,33 +1402,34 @@ def pre_scm_buildstep(registry, xml_parent, data):
|
|||||||
Execute a Build Step before running the SCM
|
Execute a Build Step before running the SCM
|
||||||
Requires the Jenkins :jenkins-wiki:`pre-scm-buildstep <pre-scm-buildstep>`.
|
Requires the Jenkins :jenkins-wiki:`pre-scm-buildstep <pre-scm-buildstep>`.
|
||||||
|
|
||||||
|
:arg string failOnError: Specifies if the job should fail on error
|
||||||
|
(plugin >= 0.3) (default false).
|
||||||
:arg list buildsteps: List of build steps to execute
|
:arg list buildsteps: List of build steps to execute
|
||||||
|
|
||||||
:Buildstep: Any acceptable builder, as seen in the example
|
:Buildstep: Any acceptable builder, as seen in the example
|
||||||
|
|
||||||
Example::
|
Example:
|
||||||
|
|
||||||
wrappers:
|
.. literalinclude::
|
||||||
- pre-scm-buildstep:
|
/../../tests/wrappers/fixtures/pre-scm-buildstep001.yaml
|
||||||
- shell: |
|
:language: yaml
|
||||||
#!/bin/bash
|
|
||||||
echo "Doing somethiung cool"
|
|
||||||
- shell: |
|
|
||||||
#!/bin/zsh
|
|
||||||
echo "Doing somethin cool with zsh"
|
|
||||||
- ant: "target1 target2"
|
|
||||||
ant-name: "Standard Ant"
|
|
||||||
- inject:
|
|
||||||
properties-file: example.prop
|
|
||||||
properties-content: EXAMPLE=foo-bar
|
|
||||||
"""
|
"""
|
||||||
|
# Get plugin information to maintain backwards compatibility
|
||||||
|
info = registry.get_plugin_info('preSCMbuildstep')
|
||||||
|
version = pkg_resources.parse_version(info.get('version', "0"))
|
||||||
|
|
||||||
bsp = XML.SubElement(xml_parent,
|
bsp = XML.SubElement(xml_parent,
|
||||||
'org.jenkinsci.plugins.preSCMbuildstep.'
|
'org.jenkinsci.plugins.preSCMbuildstep.'
|
||||||
'PreSCMBuildStepsWrapper')
|
'PreSCMBuildStepsWrapper')
|
||||||
bs = XML.SubElement(bsp, 'buildSteps')
|
bs = XML.SubElement(bsp, 'buildSteps')
|
||||||
for step in data:
|
stepList = data if type(data) is list else data.get('buildsteps')
|
||||||
|
|
||||||
|
for step in stepList:
|
||||||
for edited_node in create_builders(registry, step):
|
for edited_node in create_builders(registry, step):
|
||||||
bs.append(edited_node)
|
bs.append(edited_node)
|
||||||
|
if version >= pkg_resources.parse_version("0.3"):
|
||||||
|
XML.SubElement(bsp, 'failOnError').text = str(data.get(
|
||||||
|
'failOnError', False)).lower()
|
||||||
|
|
||||||
|
|
||||||
def logstash(registry, xml_parent, data):
|
def logstash(registry, xml_parent, data):
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
name: unicode-wrapper
|
name: unicode-wrapper
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell: |
|
- shell: |
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "Unicode! ☃"
|
echo "Unicode! ☃"
|
||||||
|
@ -19,7 +19,8 @@
|
|||||||
"name": "pre-scm-shell-ant",
|
"name": "pre-scm-shell-ant",
|
||||||
"wrappers": [
|
"wrappers": [
|
||||||
{
|
{
|
||||||
"pre-scm-buildstep": [
|
"pre-scm-buildstep": {
|
||||||
|
"buildsteps": [
|
||||||
{
|
{
|
||||||
"shell": "#!/bin/bash\necho \"Doing somethiung cool\"\n"
|
"shell": "#!/bin/bash\necho \"Doing somethiung cool\"\n"
|
||||||
},
|
},
|
||||||
@ -40,6 +41,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
- longName: 'Pre SCM BuildStep Plugin'
|
||||||
|
shortName: 'preSCMbuildstep'
|
||||||
|
version: "0.3"
|
30
tests/wrappers/fixtures/pre-scm-buildstep001.xml
Normal file
30
tests/wrappers/fixtures/pre-scm-buildstep001.xml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<project>
|
||||||
|
<buildWrappers>
|
||||||
|
<org.jenkinsci.plugins.preSCMbuildstep.PreSCMBuildStepsWrapper>
|
||||||
|
<buildSteps>
|
||||||
|
<hudson.tasks.Shell>
|
||||||
|
<command>#!/bin/bash
|
||||||
|
echo "Doing something cool"
|
||||||
|
</command>
|
||||||
|
</hudson.tasks.Shell>
|
||||||
|
<hudson.tasks.Shell>
|
||||||
|
<command>#!/bin/zsh
|
||||||
|
echo "Doing something cool with zsh"
|
||||||
|
</command>
|
||||||
|
</hudson.tasks.Shell>
|
||||||
|
<hudson.tasks.Ant>
|
||||||
|
<targets>target1 target2</targets>
|
||||||
|
<antName>default</antName>
|
||||||
|
</hudson.tasks.Ant>
|
||||||
|
<EnvInjectBuilder>
|
||||||
|
<info>
|
||||||
|
<propertiesFilePath>example.prop</propertiesFilePath>
|
||||||
|
<propertiesContent>EXAMPLE=foo-bar</propertiesContent>
|
||||||
|
</info>
|
||||||
|
</EnvInjectBuilder>
|
||||||
|
</buildSteps>
|
||||||
|
<failOnError>true</failOnError>
|
||||||
|
</org.jenkinsci.plugins.preSCMbuildstep.PreSCMBuildStepsWrapper>
|
||||||
|
</buildWrappers>
|
||||||
|
</project>
|
15
tests/wrappers/fixtures/pre-scm-buildstep001.yaml
Normal file
15
tests/wrappers/fixtures/pre-scm-buildstep001.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
wrappers:
|
||||||
|
- pre-scm-buildstep:
|
||||||
|
failOnError: true
|
||||||
|
buildsteps:
|
||||||
|
- shell: |
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Doing something cool"
|
||||||
|
- shell: |
|
||||||
|
#!/bin/zsh
|
||||||
|
echo "Doing something cool with zsh"
|
||||||
|
- ant: "target1 target2"
|
||||||
|
ant-name: "Standard Ant"
|
||||||
|
- inject:
|
||||||
|
properties-file: example.prop
|
||||||
|
properties-content: EXAMPLE=foo-bar
|
@ -0,0 +1,3 @@
|
|||||||
|
- longName: 'Pre SCM BuildStep Plugin'
|
||||||
|
shortName: 'preSCMbuildstep'
|
||||||
|
version: "0.2"
|
19
tests/wrappers/fixtures/pre-scm-buildstep002.xml
Normal file
19
tests/wrappers/fixtures/pre-scm-buildstep002.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<project>
|
||||||
|
<buildWrappers>
|
||||||
|
<org.jenkinsci.plugins.preSCMbuildstep.PreSCMBuildStepsWrapper>
|
||||||
|
<buildSteps>
|
||||||
|
<hudson.tasks.Shell>
|
||||||
|
<command>#!/bin/bash
|
||||||
|
echo "Doing something cool"
|
||||||
|
</command>
|
||||||
|
</hudson.tasks.Shell>
|
||||||
|
<hudson.tasks.Shell>
|
||||||
|
<command>#!/bin/zsh
|
||||||
|
echo "Doing something cool with zsh"
|
||||||
|
</command>
|
||||||
|
</hudson.tasks.Shell>
|
||||||
|
</buildSteps>
|
||||||
|
</org.jenkinsci.plugins.preSCMbuildstep.PreSCMBuildStepsWrapper>
|
||||||
|
</buildWrappers>
|
||||||
|
</project>
|
8
tests/wrappers/fixtures/pre-scm-buildstep002.yaml
Normal file
8
tests/wrappers/fixtures/pre-scm-buildstep002.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
wrappers:
|
||||||
|
- pre-scm-buildstep:
|
||||||
|
- shell: |
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Doing something cool"
|
||||||
|
- shell: |
|
||||||
|
#!/bin/zsh
|
||||||
|
echo "Doing something cool with zsh"
|
@ -11,6 +11,7 @@
|
|||||||
name: pre-scm-shell-ant
|
name: pre-scm-shell-ant
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell: |
|
- shell: |
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "Doing somethiung cool"
|
echo "Doing somethiung cool"
|
||||||
@ -104,4 +105,3 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
print("Doing something cool with python")
|
print("Doing something cool with python")
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
name: pre-scm-shell-ant
|
name: pre-scm-shell-ant
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell:
|
- shell:
|
||||||
!include-raw: include-raw002-cool.sh
|
!include-raw: include-raw002-cool.sh
|
||||||
- shell:
|
- shell:
|
||||||
@ -42,4 +43,3 @@
|
|||||||
- inject:
|
- inject:
|
||||||
keep-build-variables: true
|
keep-build-variables: true
|
||||||
keep-system-variables: true
|
keep-system-variables: true
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
name: unicode-raw-include-wrapper
|
name: unicode-raw-include-wrapper
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell:
|
- shell:
|
||||||
!include-raw: include-rawunicode001-cool.sh
|
!include-raw: include-rawunicode001-cool.sh
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
name: pre-scm-shell-ant
|
name: pre-scm-shell-ant
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell: |
|
- shell: |
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "Doing somethiung cool"
|
echo "Doing somethiung cool"
|
||||||
@ -43,4 +44,3 @@
|
|||||||
- inject:
|
- inject:
|
||||||
keep-build-variables: true
|
keep-build-variables: true
|
||||||
keep-system-variables: true
|
keep-system-variables: true
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
name: unicode-wrapper
|
name: unicode-wrapper
|
||||||
wrappers:
|
wrappers:
|
||||||
- pre-scm-buildstep:
|
- pre-scm-buildstep:
|
||||||
|
buildsteps:
|
||||||
- shell: |
|
- shell: |
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "Unicode! ☃"
|
echo "Unicode! ☃"
|
||||||
|
Loading…
Reference in New Issue
Block a user