Jenkins 清理和通知

2021-10-14 07:13:18 字數 536 閱讀 3315

因為post部分保證在 pipeline 結束的時候執行, 所以我們可以新增通知或者其他的步驟去完成清理、通知或者其他的 pipeline 結束任務。

pipeline }}

post

success

unstable

failure

changed

}}

有很多方法可以傳送通知, 下面是一些示例展示了如何通過電子郵件、hipchat room 或者 slack channel 傳送 pipeline 的相關資訊。

post ",

body: "something is wrong with $"

}}

post  #$ has failed.",

color: 'red'

}}

post  completed successfully."

}}

Jenkins郵件通知

安裝email extension外掛程式 jenkins設定郵箱相關引數 設定郵件引數 設定jenkins預設郵箱資訊 準備郵件內容 在專案根目錄編寫email.html,並把檔案推送到gitlab,內容如下 第 次構建日誌 title head body leftmargin 8 marginw...

jenkins 郵件通知

根據專案的構建情況,發郵件通知 jenkins本身自帶郵件通知功能,簡單的郵件通知需求,不需要額外安裝 email extension外掛程式。manage jenkins configure system 郵件通知 構建後操作中選擇email notification 構建不穩定或失敗傳送郵件給配...

jenkins 的郵件通知

1 system config 頁面 以公用的163郵件伺服器為例 可以勾選 通過傳送測試郵件配置 測試此配置能否連通,如果收到以下郵件,恭喜 this is test email 1 sent from jenkins 2 下面接著對構建的job 新增郵件傳送的步驟,這樣每次build後都會傳送郵...