From: Dominik Stadler Date: Thu, 1 Dec 2016 19:09:26 +0000 (+0000) Subject: Jenkins DSL: Start adding multiple Jobs with re-use of common parts X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=63943b7d3107d4a2cd4f1d265b2c066ba45afdfc;p=poi.git Jenkins DSL: Start adding multiple Jobs with re-use of common parts git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1772253 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 3f2ab9eb74..d5ee5a1a2b 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -1,87 +1,118 @@ // You can use http://job-dsl.herokuapp.com/ to validate the code before checkin // + +def poijobs = [ + [ + name: 'POI-DSL', + jdks: ["1.6","1.8","OpenJDK"] + ], + [ + name: 'POI-DSL-OpenJDK' + ], + [ + name: 'POI-DSL-no-scratchpad' + ], +] + def svnBase = "https://svn.apache.org/repos/asf/poi/trunk" -job('POI-DSL-Test') { - description('\n' + -'

\n' + -'Apache POI - the Java API for Microsoft Documents\n' + -'

\n' + -'

\n' + -' This is an automatically generated Job Config, do not edit it here!\n' + -' Instead change the Jenkins Job DSL at http://svn.apache.org/repos/asf/poi/trunk/jenkins,\n' + -' see https://github.com/jenkinsci/job-dsl-plugin/wiki\n' + -' for more details about the DSL.\n' + -'

\n' + -'

\n' + -' Findbugs report of latest build -\n' + -' Sonar reports -\n' + -' Coverage of latest build\n' + -'

\n') - logRotator { - numToKeep(5) - artifactNumToKeep(1) - } - label('ubuntu&&!cloud-slave') - environmentVariables { - env('LANG', 'en_US.UTF-8') - } - wrappers { - timeout { - absolute(180) - abortBuild() - writeDescription('Build was aborted due to timeout') - } - } - jdk('JDK 1.6 (latest)') - scm { - svn(svnBase) { svnNode -> - svnNode / browser(class: 'hudson.scm.browsers.ViewSVN') / - url << 'http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN' - } - } - triggers { - scm('H/15 * * * *') - } - steps { - shell('# show which files are currently modified in the working copy\n' + -'svn status\n' + -'\n' + -'# ignore any error message\n' + -'exit 0') - ant { - targets(['clean', 'jenkins']) - prop('coverage.enabled', true) - antInstallation('Ant (latest)') - } - ant { - buildFile('src/integrationtest/build.xml') - antInstallation('Ant (latest)') - } - } - publishers { - findbugs('build/findbugs.xml', false) { - healthLimits(3, 20) - thresholdLimit('low') - defaultEncoding('UTF-8') - } - archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,build/integration-test-results/**,ooxml-lib/**') - warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) { - resolveRelativePaths() - } - archiveJunit('build/ooxml-test-results/*.xml,build/scratchpad-test-results/*.xml,build/test-results/*.xml,build/excelant-test-results/*.xml,build/integration-test-results/*.xml') { - testDataPublishers { - publishTestStabilityData() - } - } - jacocoCodeCoverage { - classPattern('build/classes,build/examples-classes,build/excelant-classes,build/ooxml-classes,build/scratchpad-classes') - execPattern('build/*.exec') - sourcePattern('src/java,src/excelant/java,src/ooxml/java,src/scratchpad/src') - exclusionPattern('com/microsoft/**,org/openxmlformats/**,org/etsi/**,org/w3/**,schemaorg*/**,schemasMicrosoft*/**,org/apache/poi/hdf/model/hdftypes/definitions/*.class,org/apache/poi/hwpf/model/types/*.class,org/apache/poi/hssf/usermodel/DummyGraphics2d.class,org/apache/poi/sl/draw/binding/*.class') - } - configure { project -> - project / publishers << 'hudson.plugins.cigame.GamePublisher' {} +def defaultJdks = ["1.6"] + +def jdkMapping = [ + "1.6": "JDK 1.6 (latest)", + "1.7": "JDK 1.7 (latest)", + "1.8": "JDK 1.8 (latest)", + "1.9": "JDK 1.9 (latest)", + "OpenJDK": "OpenJDK xxx", +] + +poijobs.each { poijob -> + + def jdks = poijob.jdks ?: defaultJdks + + jdks.each { jdkKey -> + job('POI-DSL-Test') { + description('\n' + + '

\n' + + 'Apache POI - the Java API for Microsoft Documents\n' + + '

\n' + + '

\n' + + ' This is an automatically generated Job Config, do not edit it here!\n' + + ' Instead change the Jenkins Job DSL at http://svn.apache.org/repos/asf/poi/trunk/jenkins,\n' + + ' see https://github.com/jenkinsci/job-dsl-plugin/wiki\n' + + ' for more details about the DSL.\n' + + '

\n' + + '

\n' + + ' Findbugs report of latest build -\n' + + ' Sonar reports -\n' + + ' Coverage of latest build\n' + + '

\n') + logRotator { + numToKeep(5) + artifactNumToKeep(1) + } + label('ubuntu&&!cloud-slave') + environmentVariables { + env('LANG', 'en_US.UTF-8') + } + wrappers { + timeout { + absolute(180) + abortBuild() + writeDescription('Build was aborted due to timeout') + } + } + jdk(jdkMapping.get(jdkKey)) + scm { + svn(svnBase) { svnNode -> + svnNode / browser(class: 'hudson.scm.browsers.ViewSVN') / + url << 'http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN' + } + } + triggers { + scm('H/15 * * * *') + } + steps { + shell('# show which files are currently modified in the working copy\n' + + 'svn status\n' + + '\n' + + '# ignore any error message\n' + + 'exit 0') + ant { + targets(['clean', 'jenkins']) + prop('coverage.enabled', true) + antInstallation('Ant (latest)') + } + ant { + buildFile('src/integrationtest/build.xml') + antInstallation('Ant (latest)') + } + } + publishers { + findbugs('build/findbugs.xml', false) { + healthLimits(3, 20) + thresholdLimit('low') + defaultEncoding('UTF-8') + } + archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,build/integration-test-results/**,ooxml-lib/**') + warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) { + resolveRelativePaths() + } + archiveJunit('build/ooxml-test-results/*.xml,build/scratchpad-test-results/*.xml,build/test-results/*.xml,build/excelant-test-results/*.xml,build/integration-test-results/*.xml') { + testDataPublishers { + publishTestStabilityData() + } + } + jacocoCodeCoverage { + classPattern('build/classes,build/examples-classes,build/excelant-classes,build/ooxml-classes,build/scratchpad-classes') + execPattern('build/*.exec') + sourcePattern('src/java,src/excelant/java,src/ooxml/java,src/scratchpad/src') + exclusionPattern('com/microsoft/**,org/openxmlformats/**,org/etsi/**,org/w3/**,schemaorg*/**,schemasMicrosoft*/**,org/apache/poi/hdf/model/hdftypes/definitions/*.class,org/apache/poi/hwpf/model/types/*.class,org/apache/poi/hssf/usermodel/DummyGraphics2d.class,org/apache/poi/sl/draw/binding/*.class') + } + configure { project -> + project / publishers << 'hudson.plugins.cigame.GamePublisher' {} + } + mailer('dev@poi.apache.org', false, false) + } } - mailer('dev@poi.apache.org', false, false) - } + } }