持續(xù)集成JenkinsAPI常見用法_第1頁
持續(xù)集成JenkinsAPI常見用法_第2頁
持續(xù)集成JenkinsAPI常見用法_第3頁
免費預(yù)覽已結(jié)束,剩余3頁可下載查看

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、持續(xù)集成JenkinsAPI常見用法jenkins持續(xù)集成開源工具提供了豐富的api接口,根本上所有的操作都可以使用curl來從后臺調(diào)度,包括:創(chuàng)建項目,禁用項目,啟用項目,獲取項目描述,獲取配置文件,普通觸發(fā),scm觸發(fā),帶參數(shù)觸發(fā),帶補丁觸發(fā)?!颈尘啊浚翰块T在搞持續(xù)集成,使用jenkins 作為核心調(diào)度,要再其根底上進展二次封裝,所以需要研究下jenkins 的api。筆者主要負責(zé)搭建平臺,在研究用法也花費了些時間,本文主要做個簡要的記錄,希望能為各位朋友節(jié)省時間?!经h(huán)境】:默認讀者已經(jīng)具備了根本的持續(xù)集成經(jīng)驗和jenkins 用法1.2.系統(tǒng)Suse5. patch-parameter【

2、API介紹】Jenkins 提供了 html、json、python API,實質(zhì)都是以get/post 方式調(diào)用的。查看.xxx.xxx/jenkins/api/即可得到相應(yīng)的說明,如圖:由電 md Is also avail able.Ycu rar ?lsa =pecrhr opnoncil XPgth to- control Che Vagment you d li卜-tc obtan :birr sfp 匕曰口訓(xùn).For exartle, .【D:. f the XPath Qdlhn miatches a tet noder theesju止 imiI be i匚.% Il iJS

3、OMAP1Access ii色邑an色 data 總弓 iStJ N Par javaSmpE-baed &亡色弓弓-&jppcirts I UH through 出色 Dponrial 相戶 pdJJzrJfcr 口Ur p)iirPvrhcn 戌卩I人亡t鋰冒!s ii色邑古m空日首甜 占弓 PyE3ii for P /thon clients. This can b# parsed into Python obj-scr as Qgfcriiih- a-Upg 化 xa 詛 1B and the rsuftng object tr& is identicfil to Ithiat of

4、J SON Howftv*.whep you do t+iis. beware cF Fa %產(chǎn)口舊厲 irriiliratirn, f you nre rnnerting to 耳 nor-tnjslrprl 已hkin勺 the 百三電can send vou malKicus Python proqrams.For more informa jinn alb out remoEe API in Jenkins ses tie dpcjrrentatiori.Controlling the amount of data you fetcltIn all formatsH th毛psrame

5、tr cantci contrd amount ordsvctjII rwsive. Th宕 d-?Faultns lepih=O b Lrt: by increasing alkje #ou csn 石Et a tor of ctats by single remctE API imT TaOon ;the dov/TisidE ts bigger bandwidth rgqui乜 eghL) Compare, daptim and 0 曰些三 JL and wh=at the differ once is for yourself. a|io note that data created

6、tw a smaler depth vaue is always a suibset of the data created by a bigger 4 pii luw.A riHx yr dltf=ir alive us Hit tr4.b. with excidi- since informs on does nor need to be acnerated on rhe setver and ttien dim 站 nd mflv btc Eincs you n-d only know what尹 looking for. rathsr than sttin sq 寸口Lam see s

7、amples uf iliEin in 八二st-/丄此門“疏旦討刖止*pp討血二加curl -X POST .xxx.xxx/jenkins/createltem?name=JavaStd-user peterguo:peterguo-data-binary javastd.config.xml -H Content-Type: text/xml2.禁用curl -X POST .xxx.xxx/jenkins/job/JavaStd/disable-user peterguo:peterguo3.啟用curl -X POST .xxx.xxx/jenkins/job/JavaStd/ena

8、ble -user peterguo:peterguocurl -X POST .xxx.xxx/jenkins/job/JavaStd/doDelete -user peterguo:peterguo5. 獲取項目描述curl -X GET .xxx.xxx/jenkins/job/JavaStd/description -user peterguo:peterguo6. 獲取配置文件curl -X GET .xxx.xxx/jenkins/job/JavaStd/config.xml -user peterguo:peterguo7. 觸發(fā)SCM檢查curl -X GET .xxx.xxx

9、/jenkins/job/JavaStd/polling -user peterguo:peterguo8. 普通觸發(fā)curl -X GET .xxx.xxx/jenkins/job/JavaStd/build -user peterguo:peterguocurl -X GET.xxx.xxx/jenkins/job/helloworld-freestyle/buildWithParameters?bAIITest=&Choices=2&strParam=abc -user peterguo:peterguo10.帶參數(shù)和補丁觸發(fā)curl -X POST.xxx.xxx/jenkins/jo

10、b/helloworld-freestyle/buildWithParameters?bAIITest=&Choices=2&strParam=abc -user peterguo:peterguo -F action=upload -Fpatch.diff=OtherTest.java.patch注:帶補丁觸發(fā)需要先安裝補丁插件,并設(shè)置項目的補丁參數(shù)増加參埶-f Boolean ValueChoiceFile ParameterList Sub version tags (and more)Password ParameterPatch fileas a parameterRun Param

11、eter. String ParameterText Parameter【Python 調(diào)用】提供python 使用pycurl調(diào)用的例子片段,實際和 curl調(diào)用一樣,優(yōu)點是易整合。view source print?01 import pycurl 02 url = 10.129.145.112:8081/jenkins/job/helloworld-freestyle/config.xml03 crl = pycurl.Curl()04 crl.setopt(pycurl.VERBOSE,1) |05 crl.setopt(pycurl.FOLLOWLOCATION, 1)06 crl.setopt(pycurl.MAXREDIRS, 5)07 crl.setopt(pycurl.USERPWD, peterguo:peterguo)0809 crl.setopt(pycurl.CONNECTTIMEOUT, 60)10 crl.setopt(pycurl.TIMEOUT, 300)11 cr

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論