跳转至

jenkins

安装

下载链接:https://www.jenkins.io/download/

安装方式:war/exe/docker


插件源

进入 Manage Jenkins -> Manage Plugin -> Advanced -> Update Site

https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json
http://mirror.xmission.com/jenkins/updates/update-center.json

详见:http://testingpai.com/article/1604671047314


推荐插件

  • HTML Publisher plugin
  • Allure
  • Git
  • Extended E-mail Notification


pipeline

流水线语法:http://localhost:8000/job/pipeline/pipeline-syntax/


Dockerfile

FROM jenkins/agent:alpine-jdk11
USER root
RUN apk add python3
RUN apk add py3-pip
USER jenkins



拓展阅读