Skip to content

Instantly share code, notes, and snippets.

View letsrokk's full-sized avatar

Dmitry Mayer letsrokk

View GitHub Profile
@jarek-przygodzki
jarek-przygodzki / jenkins-delete-failed-builds.groovy
Created May 5, 2015 05:28
Delete all failed Jenkins builds
def jobName = '(...)'
Jenkins.instance.getItemByFullName(jobName).builds.findAll { it.result == Result.FAILURE}.each { it.delete() }
@lvdaqian
lvdaqian / jenkins-email-ext-clangScanReport-template.jelly
Created April 10, 2014 07:00
a jelly script template for jenkins email-ext plugin. in this template we can publish the report of clangScanBuild plugin by using email template.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define">
<html>
<head>
<title>${project.name}</title>
<style>
body table, td, th, p, h1, h2 {
margin:0;
font:normal normal
100% Georgia, Serif;
background-color: #ffffff;