本次實施主要實現:html
- 代碼提交gitlab,自動觸發Jenkins構建
- gitlab發起Merge Request, 須要Jenkins檢查經過才能夠merge,實現代碼review和質量管控
- gitlab開發分支merge後自動發佈到test環境
- gitlab master分支merge後自動發佈到prod環境
Jenkins Config
- 安裝插件Gitlab, 使用教程: https://github.com/jenkinsci/gitlab-plugin#pipeline-jobs
- 安裝插件Pipeline Utility Steps, 用來讀取文件
- 安裝插件Warnings Next Generation , 使用教程:https://github.com/jenkinsci/warnings-ng-plugin/blob/master/doc/Documentation.md#quality-gate-configuration
配置gitlab connectiongit
系統設置-gitlab github
配置API token, 須要登錄gitlab,給一個developer角色的帳號,在系統設置中找到access token, 獲取token。 而後在Jenkins中配置Gitlab API Toekn的憑證。web
Jenkins多分支Job
新建多分支流水線任務。docker
配置分支源,輸入gitlab地址,建立一個username password token, 填入gitlab的帳號和密碼。其餘默認讀取根目錄下的jenkinsfile文件。 https://github.com/Ryan-Miao/code-quality-verify-demo/blob/master/Jenkinsfileide
接下來重點就是Jenkinsfile裏的配置。gitlab
主要有:測試
獲取gitlab connection, 填寫咱們以前配置gitlab connectionui
properties([gitLabConnection('gitlab-bigdata')])
拉取代碼this
checkout scm
告訴gitlab job狀態
updateGitlabCommitStatus name: 'build', state: 'pending'
不一樣分支走不一樣的構建方式
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'dev' ) { stage("Build Docker Image"){ echo "build docker image" echo "Only dev/master branch can build docker image" } if(env.BRANCH_NAME == 'dev'){ stage("Deploy to test"){ echo "branch dev to deploy to environment test" } stage("Integration test"){ echo "test環境集成測試" } } if(env.BRANCH_NAME == 'master'){ stage("Deploy to prod"){ echo "branch master to deploy to environment prod" } stage("Health check"){ echo "prod檢查" } } }
點擊當即構建便可。
觸發方式能夠選擇手動觸發,定時觸發(好比每分鐘), gitlab trigger.
Gitlab trigger jenkins
對於多分支jenkins任務,trigger配置很簡單。直接在gitlab項目配置中,找到integration,直接配置jenkins項目地址便可,選中push events和merge request events.
http://JENKINS_URL/project/PROJECT_NAME
When you configure the plugin to trigger your Jenkins job, by following the instructions below depending on job type, it will listen on a dedicated URL for JSON POSTs from GitLab's webhooks. That URL always takes the form http://JENKINS_URL/project/PROJECT_NAME, or http://JENKINS_URL/project/FOLDER/PROJECT_NAME if the project is inside a folder in Jenkins. You should not be using http://JENKINS_URL/job/PROJECT_NAME/build or http://JENKINS_URL/job/gitlab-plugin/buildWithParameters, as this will bypass the plugin completely.
Gitlab Merge Request
gitlab在項目設置中,找到Merge Request
Only allow merge requests to be merged if the pipeline succeeds Pipelines need to be configured to enable this feature. Only allow merge requests to be merged if all discussions are resolved
當咱們發起一個M-R
當pipeline構建成功以後:
咱們Jenkinsfile裏設置不一樣分支的構建策略,這樣就實現了不一樣環境的發佈和質量校驗。須要注意的是,當代碼合併到master的時候,咱們的功能就會執行發佈策略了。而實際上,咱們應該發佈到canary金絲雀環境,即預生產環境,等確保沒有任何問題以後再手動發佈到prod。這裏簡化處理髮布流程,直接發佈。
參考
原文出處:https://www.cnblogs.com/woshimrf/p/gitlab-with-jenkins.html