jenkins2 Jenkinsfile和load

更复杂的pipeline实例,使用了Jenkinsfile和load。

文章来自:http://www.ciandcd.com

文中的代码来自可以从github下载: https://github.com/ciandcd

实例代码来自:https://github.com/jenkinsci/workflow-aggregator-plugin/tree/master/demo/repo

1. groovy脚本

https://github.com/jenkinsci/workflow-aggregator-plugin/blob/master/demo/repo/servers.groovy

def deploy(id) {
unstash ‘war‘
sh "cp x.war /tmp/webapps/${id}.war"
}

def undeploy(id) {
sh "rm /tmp/webapps/${id}.war"
}

def runWithServer(body) {
def id = UUID.randomUUID().toString()
deploy id
try {
body.call id
} finally {
undeploy id
}
}

this

2. Jenkinsfile

https://github.com/jenkinsci/workflow-aggregator-plugin/blob/master/demo/repo/Jenkinsfile

jettyUrl = ‘http://localhost:8081/‘

def servers

stage ‘Dev‘
node {
checkout scm
servers = load ‘servers.groovy‘
mvn ‘-o clean package‘
dir(‘target‘) {stash name: ‘war‘, includes: ‘x.war‘}
}

stage ‘QA‘
parallel(longerTests: {
runTests(servers, 30)
}, quickerTests: {
runTests(servers, 20)
})

stage name: ‘Staging‘, concurrency: 1
node {
servers.deploy ‘staging‘
}

input message: "Does ${jettyUrl}staging/ look good?"
try {
checkpoint(‘Before production‘)
} catch (NoSuchMethodError _) {
echo ‘Checkpoint feature available in CloudBees Jenkins Enterprise.‘
}

stage name: ‘Production‘, concurrency: 1
node {
sh "wget -O - -S ${jettyUrl}staging/"
echo ‘Production server looks to be alive‘
servers.deploy ‘production‘
echo "Deployed to ${jettyUrl}production/"
}

def mvn(args) {
sh "${tool ‘Maven 3.x‘}/bin/mvn ${args}"
}

def runTests(servers, duration) {
node {
checkout scm
servers.runWithServer {id ->
mvn "-o -f sometests test -Durl=${jettyUrl}${id}/ -Dduration=${duration}"
}
}
}

3. 如果有兴趣可以下载pipeline demo docker image

https://github.com/jenkinsci/workflow-aggregator-plugin/tree/master/demo

时间: 2024-11-07 14:56:38

jenkins2 Jenkinsfile和load的相关文章

Jenkins2 入门到精通(学习资料)

原文:https://www.zhihu.com/question/29163932/answer/138366614 Jenkins2 入门到精通 Jenkins2 下载与启动jenkins2 插件安装jenkins2 hellopipelinejenkins2 pipeline介绍jenkins2 javahelloworldjenkins2 groovy入门jenkins2 pipeline入门jenkins2 pipeline高级jenkins2 Jenkinsfilejenkins2

Jenkins pipeline 入门到精通系列文章

Jenkins2 入门到精通系列文章. Jenkins2 下载与启动jenkins2 插件安装jenkins2 hellopipelinejenkins2 pipeline介绍jenkins2 javahelloworldjenkins2 groovy入门jenkins2 pipeline入门jenkins2 pipeline高级jenkins2 Jenkinsfilejenkins2 multibranchjenkins2 Jenkinsfile和loadjenkins2 groovy脚本参考

hibernate载入持久化对象的两种方式——get、load

一.get与load对照 在hibernate中get和load方法是依据id取得持久化对象的两种方法.但在实际使用的过程中总会把两者混淆,不知道什么情况下使用get好,什么时候使用load方法效率更高.下边具体说一下get和load的不同,有些时候为了对照也会把find加进来. 1.从返回结果上对照: load方式检索不到的话会抛出org.hibernate.ObjectNotFoundException异常 get方法检索不到的话会返回null 2.从检索运行机制上对照: get方法和fin

Oracle Load Testing

import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.ArrayList; import java.util.Date; import java.util.Enumeration; impo

LB(Load balance)负载均衡集群--{LVS-[NAT+DR]单实例实验+LVS+keeplived实验} 菜鸟入门级

LB(Load balance)负载均衡集群 LVS-[NAT+DR]单实例实验 LVS+keeplived实验 LVS是Linux Virtual Server的简写,意即Linux虚拟服务器,是一个虚拟的服务器集群系统. 逻辑可分为: 1调度层 (Director):它是整个集群对外面的前端机,负责将客户的请求发送到一组服务器上执行,而客户认为服务是来自一个IP地址(我们可称之为虚拟IP地址)上的. 2[服务器池(server pool)/集群层(Real server)]:是一组真正执行客

mysql导入数据load data infile用法整理

有时候我们需要将大量数据批量写入数据库,直接使用程序语言和Sql写入往往很耗时间,其中有一种方案就是使用MySql Load data infile导入文件的形式导入数据,这样可大大缩短数据导入时间. 假如是从MySql客户端调用,将客户端的文件导入,则需要使用 load local data infile. LOAD DATA INFILE 语句以很高的速度从一个文本文件中读取行到一个表中.文件名必须是一个文字字符串. 1,开启load local data infile. 假如是Linux下

Load和Ready

Asp.net开发者都会了解ASP.NET页面运行时,将经历一个生命周期,在生命周期中将执行一系列处理步骤.这些步骤包括初始化.实例化控件.还原和维护状态.运行事件处理程序代码以及进行呈现. 强烈推荐: http://www.codeproject.com/Articles/73728/ASP-NET-Application-and-Page-Life-Cycle 有兄台已经翻译好了而且补充了一些很有用的信息: http://www.cnblogs.com/edisonchou/p/395830

关于C#反射Assembly.load() .CreateInstance() 未报错, 返回对象为空

这几天开始新项目,在AbstractDalFactory反射实例的时候,遇到的问题是load程序集成功,但是Create实例为null. 被反射的程序集名称和命名空间都为s2s.Dal, 刚开始我在想,会不会是中间的有个点 . 的问题,转而一想不可能啊,因为我AutoFac依赖注入s2s.BLL对象的时候,中间也有的点.啊. 第一天晚上调试了几个小时,今天晚上调试几个小时之后我终于决定重新创建一个DAL程序集,命名为s2s_Dal. 果然问题解决了. 按照情况来看,的确是.影响了.NETFram

Hibernate get和load区别(转)

get和load方式是根据id取得一个记录下边详细说一下get和load的不同,因为有些时候为了对比也会把find加进来. 1.从返回结果上对比:load方式检索不到的话会抛出org.hibernate.ObjectNotFoundException异常get方法检索不到的话会返回null 2.从检索执行机制上对比: get方法和find方法都是直接从数据库中检索 而load方法的执行则比较复杂首先查找session的persistent Context中是否有缓存,如果有则直接返回 如果没有则