码迷,mamicode.com
首页 > 移动开发 > 详细

[Jenkins] Creating Application builds

时间:2017-04-10 09:53:52      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:package   new   image   技术分享   jar   compile   code   jenkins   web   

After installing the jenkins, we start creating new job.

 

1. Give job names (your project name):

技术分享

技术分享

 

2. Go to "Source Code Management tab":

Connect to source code:

技术分享

 

3. Go to the "Build" tab, using the drop down menu, to select a step.

Normally like a web app, you can select "Excute Shell" / "Excute Windows batch command". 

Here, because we use Java application as an example, so we select "Invoke top-level Maven targets".

技术分享

 

4. Give the command should be excuted.

In the example we just need to use ‘mvn compile‘ to compile a Java app.

技术分享

 

5. In some case, the root dir is not the app‘s root dir, you can click "advanced" button to add more information. (see the pic above)

 

6. After those step, you are able to Build the application by clicking "Build now".

技术分享

 

So now jenkins will do the following steps:

  • Go to our github, clone the source code and put the code inside "~/.jenkins/Workspace/atomsphere" folder.
  • Output file (if any) will be also put inside this folder.

Usually the output files will be some file we want to use, for example a web app, the output might be the bundle files that we want to served. 

Now everytime you click "Build Now" button, it will re-generate new files and discard the previous files. But we might want to keep history instead of throw those away.

 

7. Archive previous version files

We can actaully choose which files (folder) actually we want to keep. For web app, it might be just one "dist" folder.

Here we want to keep jar file which generated by comiler.

技术分享

 

8. Now after we build again, we will get a copy:

技术分享

 

9. You might also want to clean the files after some time, you can also chain the command together. such as:

mvn clean
mvn package

技术分享

 

 10. Those jenkins job are actually saved into a config.xml file inside "workspace/[job_name]" folder. 

If anything change on this file manully, you can also click "Reload Configuration from Disk" to get latest changes.

技术分享

[Jenkins] Creating Application builds

标签:package   new   image   技术分享   jar   compile   code   jenkins   web   

原文地址:http://www.cnblogs.com/Answer1215/p/6687277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!