美文网首页Technical
2018-04-17 Install and run Jenki

2018-04-17 Install and run Jenki

作者: 猪迹 | 来源:发表于2018-04-25 16:31 被阅读0次

    Step 1 Install and run

    Estimation: 20 minutes

    Download the war file and run it following documentation: https://jenkins.io/doc/book/installing/#war-file
    Save the war file into a single folder.
    Follow the document and run the war file from command-line, like java -jar jenkins.war --httpPort=9090
    Access localhost:9090 from browser and unlock Jenkins, following the documentation.

    Step 2 Install suggested plugins

    Estimation: 20 minutes

    In the Customize Jenkins page, select 'Install suggested plugins' and wait for the process to be finished. Just ignore the failed-to-install ones.

    Step 3 Create administrator user

    Estimation: 5 minutes

    Following the guide to create the administrator user.

    Step 4 Create a free-style task

    Estimation: 10 minutes

    • Open Jenkins portal(http://localhost:9090) and select 'New Item'.
    • Input a name for the item.
    • Select Freestyle project and click 'OK'.
    • Find section Build Triggers and select Build periodically. Set value H/6 * * * * to build every 6-minutes.
    • Find section Builds and select Execute Windows batch command. Input dir as the shell to be used.
    • Click 'Apply' and then 'Save'.
    • Wait for several minutes, then check that a build is scheduled and executed successfully.

    Step 5 Useful DOS commands to remove read-only attributes and to copy files & folders

    pushd c:\
    attrib -r /s /d c:\yyyyy\*
    
    xcopy /S /Y C:\xxxxx\stbModel c:\yyyyy\stbModel\
    
    pushd c:\yyyyy
    
    python runner.py
    

    相关文章

      网友评论

        本文标题:2018-04-17 Install and run Jenki

        本文链接:https://www.haomeiwen.com/subject/gplukftx.html