Contents

BitBucket的CI簡單測試記錄

Contents

原本想使用python的yamllint
不過使用python的yamllint會有一些問題
像一行超過80個字 (奇怪…有這個規定??)

後來用node的yamllint就沒問題

1
2
3
4
5
6
pipelines:
  default:
    - step:
        script: # Modify the commands below to build your repository.
          - npm install -g yaml-lint
          - yamllint bitbucket-pipelines.yml

錯誤時候,會發Email通知,成功不會發通知。
有空再好好研究還能怎麼玩:P

參考來源:
http://ithelp.ithome.com.tw/articles/10187774
http://ithelp.ithome.com.tw/articles/10187137