Created
September 25, 2015 17:12
-
-
Save glombard/5a5c7a97acde3aa5ea8c to your computer and use it in GitHub Desktop.
Using Jenkins Job-DSL plugin to create a job with a Post-Build Step / publisher plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
job('my-generated-job') { | |
description('This job was automatically generated by a Job-DSL seed job') | |
steps { | |
shell('echo Testing Job-DSL and log-parser') | |
} | |
wrappers { | |
colorizeOutput('xterm') | |
} | |
// Use configure to add the 'publishers' XML node in the generated config.xml | |
configure { project -> | |
project / publishers << 'hudson.plugins.logparser.LogParserPublisher'(plugin: '[email protected]') { | |
unstableOnWarning(false) | |
failBuildOnError(true) | |
parsingRulesPath('/Users/Shared/Jenkins/Home/log-parser/test.txt') | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment