博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to use groovy script on jenkins
阅读量:5058 次
发布时间:2019-06-12

本文共 899 字,大约阅读时间需要 2 分钟。

1. Install groovy plugin

2. Add a step of groovy. (normal & systerm)

3. Execute groovy script

import jenkins.model.*def q = Jenkins.instance.queueq.items.findAll{ it.task.name.startsWith('ttt') }.each{ q.cancel(it.task) }

Above script is cancel all pending build in queue.

 

 

Additional info:

install groovy :

GVM (the GroovyenVironment Manager)

This tool makesinstalling Groovy on any Bash platform (Mac OSX, Linux, Cygwin, Solaris orFreeBSD) very easy.
Simply open a newterminal and enter:
$ curl -s get.gvmtool.net | bash
Follow theinstructions on-screen to complete installation.
Open a newterminal or type the command:
$ source "$HOME/.gvm/bin/gvm-init.sh"
Then install thelatest stable Groovy:
$ gvm install groovy
After installationis complete and you've made it your default version, test it with:
$ groovy -version
That's all thereis to it!

转载于:https://www.cnblogs.com/root-wang/p/4569095.html

你可能感兴趣的文章
泛型第23条:请不要在新代码中使用原生态类型
查看>>
对象方法(转载)Java中finalize的使用
查看>>
一个截屏工具制作的全过程记录——如何使用“拿来主义”
查看>>
了解SpringMVC框架及基本工作流程
查看>>
软件开发之能力素养
查看>>
5.28 周末笔记
查看>>
git 永久性设置密码
查看>>
自拍机器人(摄影 拍照 录像)
查看>>
Installation for TinyOS on Ubuntu 16.04
查看>>
h5页面在不同ios设备上的问题总结
查看>>
Python的map、filter、reduce函数
查看>>
前端面试js题
查看>>
51NOD 大数加法以及python写法
查看>>
java四种数组排序
查看>>
(三)、
查看>>
crud springmvc
查看>>
Java对象初始化详解
查看>>
linux IPtable防火墙 禁止和开放端口
查看>>
Rails应用系列(1):初识Rails
查看>>
P3378 【模板】堆
查看>>