操做系統:ubuntu 14.04.4 LTSjava
wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/war-stable/2.32.3/jenkins.war
Jekins有三種方式進行安裝:python
下面介紹的是最後一種安裝方式。須要至少Java7以上的(推薦Java 8)環境。 至少具備512MB內存。web
下載jenkins.war。(上面已經說明了)docker
經過SSH鏈接到ubuntu上,而後運行java -jar jenkins.war
ubuntu
Jenkins initial setup is required. An admin user has been created and a password generated. Please use the following password to proceed to installation:瀏覽器
b3ce86bc4ab64188bee4032f3845d113maven
This may also be found at: /root/.jenkins/secrets/initialAdminPasswordui
上面的密碼會在下個步驟中使用。操作系統
最快的方式是,複製下面的例子到你的代碼版本庫中,並使用Jenkinsfile做爲文件名。code
下面是針對Java語言的:
Jenkinsfile (Declarative Pipeline) pipeline { agent { docker 'maven:3.3.3' } stages { stage('build') { steps { sh 'mvn --version' } } } }
針對Python語言的:
Jenkinsfile (Declarative Pipeline) pipeline { agent { docker 'python:3.5.1' } stages { stage('build') { steps { sh 'python --version' } } } }