博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
004-Jenkins-Create FreeStyle Job
阅读量:5260 次
发布时间:2019-06-14

本文共 880 字,大约阅读时间需要 2 分钟。

0. Environment is CentOS7

yum update

0.1. wget -O /etc/yum.repos.d/jenkins.repo

0.2. rpm --import

0.3. yum –y install jenkins

0.4. yum install java-1.7.0-openjdk(or download from java website manually)

0.5. service jenkins start/stop/restart or systemctl start/stop/restart jenkins

0.6. chkconfig jenkins on

0.7. useradd jenkins; passwd jenkins; su jenkins; ssh-keygen -t rsa -C “XXX”

0.8. copy the content in the id_rsa.pub to the git SSH key

 

1. Create a Freestyle project

1.1  Enter Jenkins -> New Item, then input the item name and select “Freestyle project”, go to next step;

1.2  Input the Project Name

 

Source Code Management, we select “Git”

 

 

The private key is Enter directly:

 

Another way to set the credential.

1.3  Go to “Build”

Execute shell

Command:

 

1.4 Save the job, then you can go the left menu and click "Build Now".

转载于:https://www.cnblogs.com/XilingCai/p/6524806.html

你可能感兴趣的文章
Ubuntu(虚拟机)下安装Qt5.5.1
查看>>
java.io.IOException: read failed, socket might closed or timeout, read ret: -1
查看>>
java 常用命令
查看>>
CodeForces Round #545 Div.2
查看>>
卷积中的参数
查看>>
51nod1076 (边双连通)
查看>>
Item 9: Avoid Conversion Operators in Your APIs(Effective C#)
查看>>
深入浅出JavaScript(2)—ECMAScript
查看>>
STEP2——《数据分析:企业的贤内助》重点摘要笔记(六)——数据描述
查看>>
ViewPager的onPageChangeListener里面的一些方法参数:
查看>>
Jenkins关闭、重启,Jenkins服务的启动、停止方法。
查看>>
CF E2 - Array and Segments (Hard version) (线段树)
查看>>
Linux SPI总线和设备驱动架构之四:SPI数据传输的队列化
查看>>
SIGPIPE并产生一个信号处理
查看>>
CentOS
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
爬虫-通用代码框架
查看>>
2019春 软件工程实践 助教总结
查看>>
YUV 格式的视频呈现
查看>>