有沒有任何方法可以在上次作業中獲取構建管道的所有上游作業的構建編號,構建狀態和構建url信息。 我有很多作業相互連接。觸發器B,B觸發C.我不想爲每個項目發送成功電子郵件,但想要在最後的下游構建中發送電子郵件。但電子郵件應包含所有上游版本的日誌鏈接。 The Mail content would like to be as below:
Job A: Build number #1 SUCCE
我有一些代碼在一個pom.xml文件中讀取然後嘗試重新序列,並將其寫回: // Get the file raw text
def pomXMLText = readFile(pomFile)
// Parse the pom.xml file
def project = new XmlSlurper(false, false).parseText(pomXMLText)
...