funkwerk / jenkins-workflow

contains handy groovy workflow-libs scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jenkins-workflow

Contains handy groovy workflow-libs scripts for Jenkins. Goal is to keep Jenkinsfile as concise and readable as possible.

Usage

Clone this project into $JENKINS_HOME/workflow-libs. After that restart Jenkins. Then Pipeline as well as Multi-Branch-Pipeline Builds are able to use these steps.

Simple Example for a Rake Project

#!groovy

developer {
  checkoutScm()
  rake 'unittest[--report=build/report.xml]'
  reportJunit 'build/report.xml'  // will publish the test report
  optional { rake 'audit' }  // to mark stages which are not critical
  rake 'uml'
  reportHtml(name: 'UML', path: 'build/html')  // will upload an arbitrary HTML Report
  rake 'test variant=release'
  rake 'deploy prefix=export'
}

References

About

contains handy groovy workflow-libs scripts

License:Apache License 2.0


Languages

Language:Groovy 100.0%