jenkins+github+linux持续集成之自动远程部署(阿里云ubuntu)

2 篇文章 0 订阅
2 篇文章 0 订阅

1:jenkins安装github插件

2:新建一个自由风格的项目

——- 选用github 填写项目url(…git)

——-源码管理选用git 添加连接github信息 可在系统配置中或首页添加

——-填写构建脚本

3:在github对应的项目Setting中添加webhook

——payloadURL: http://www.example-jenkins.com:8080/github-webhook

——触发条件:默认push事件 可勾选自定义

4: 解决shell执行后nohup进程却被jenkins杀死问题

java -Dhudson.util.ProcessTree.disable=true -jar jenkins.war

其他方式参考:https://wiki.jenkins.io/display/JENKINS/ProcessTreeKiller

linux构建脚本实例:

sh /root/test.sh
ps -ef | grep jenkins_test 

/root/test.sh

#!bin/sh
sh /root/.jenkins/jar-restart.sh test jenkins_test-1.0-SNAPSHOT 6

/root/.jenkins/jar-restart.sh

#!/bin/sh
#重启jar

jarPath="/root/.jenkins/workspace/$1/target/$2.jar"
logPath="/root/.jenkins/jar-run-logs" 

echo $jarPath
echo $logPath

if [ -e ${jarPath} ]

        then echo "存在$2.jar文件,正准备重新运行..."
        #pkill -9 $jarPath  无效
        kill `ps -ef |grep $jarPath | grep -v grep|awk '{print $2}'` 

        if [ ! -d ${logPath} ]
                then mkdir -p ${logPath}
        fi

        nohup java -jar ${jarPath} > ${logPath}/$1.log 2>&1 &

        sleep $3
        more ${logPath}/$1.log

else
        echo "$2.jar文件不存在!"
fi

jenkins+github文章参考:
http://blog.csdn.net/u013066244/article/details/52611070
http://blog.csdn.net/u011781521/article/details/77914344
http://blog.csdn.net/u011904605/article/details/54590383
解决shell进程被jenkins杀死参考:
http://blog.csdn.net/houyefeng/article/details/52269366
https://wiki.jenkins.io/display/JENKINS/ProcessTreeKiller

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值