温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

jenkins安装

发布时间:2020-06-29 22:15:37 来源:网络 阅读:1691 作者:aaron428 栏目:web开发

一、下载docker镜像
To use the latest LTS: docker pull jenkins/jenkins:lts
To use the latest weekly: docker pull jenkins/jenkins

二、运行docker镜像
docker run -d -u 0 -p 8080:8080 -p 50000:50000 -v /data/jenkins_home:/var/jenkins_home jenkins/jenkins:lts

三、系统初始化密码文件
/data/jenkins_home/secrets/initialAdminPassword

四、python jenkins
pip install python-jenkins
使用文档:http://python-jenkins.readthedocs.io/en/latest/examples.html#example-1-get-version-of-jenkins
创建任务
import jenkins

server = jenkins.Jenkins('http://localhost:8080', username='admin', password='passwd')

job_xml = """<?xml version='1.0' encoding='UTF-8'?>
<flow-definition plugin='workflow-job@2.17'>
<actions/>
<description>pipeline测试</description>
<keepDependencies>false</keepDependencies>
<properties/>
<definition class='org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition' plugin='workflow-cps@2.45'>
<script>node {
stage('get clone'){
echo 'git clone ......'
}
stage('mvn test'){
echo 'mvn test ......'
}
stage('mvn build'){
echo 'mvn clean install ......'
}
stage('deploy'){
echo 'deploy ......'
}
}</script>
<sandbox>true</sandbox>
</definition>
<triggers/>
<disabled>false</disabled>
</flow-definition>"""

server.create_job('pipeline测试', job_xml)

五、xml转yaml
pip install jenkins-job-wrecker
https://github.com/ktdreyer/jenkins-job-wrecker

jjwrecker -f path/to/my-job/config.xml -n 'my-job' 文件会生成到当前路径的:"output"文件夹中

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI