Jenkins使用API创建流工程
Posted logo749
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jenkins使用API创建流工程相关的知识,希望对你有一定的参考价值。
首先获取一个样例工程的config.xml
curl -X GET http://example.com/job/test/config.xml -u username:API_TOKEN -o mylocalconfig.xml
然后可以根据该config.xml创建多个工程
curl -s -XPOST ‘http://example.com/createItem?name=yourJobName‘ -u username:API_TOKEN --data-binary @mylocalconfig.xml -H "Content-Type:text/xml"
以上是关于Jenkins使用API创建流工程的主要内容,如果未能解决你的问题,请参考以下文章
[Jenkins] TestComplete 使用Jenkins进行持续集成测试