Skip to content

Instantly share code, notes, and snippets.

@ycx356
ycx356 / install_jenkins_plugin.sh
Created October 8, 2019 21:19 — forked from micw/install_jenkins_plugin.sh
Script to install one or more jenkins plugins including dependencies while jenkins is offline
#!/bin/bash
set -e
if [ $# -eq 0 ]; then
echo "USAGE: $0 plugin1 plugin2 ..."
exit 1
fi
plugin_dir=/var/lib/jenkins/plugins
@ycx356
ycx356 / jenkins-email-ext-clangScanReport-template.jelly
Created April 7, 2017 22:36 — forked from tsengeagle/jenkins-email-ext-clangScanReport-template.jelly
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;