Skip to main content

Posts

Showing posts with the label Jenkins

Jenkins [DSP2017 #06]

In this entry I want to introduce tool which should be used in each projects. It covers how to install and configure a simple job. First of all I started from installation of jenkins in my local machine (Ubuntu). You can download installation package from official page or use jenkins wiki . As like always I met some problem:  The following packages have unmet dependencies:  jenkins : Depends: daemon but it is not installed As a resolving of it I used command apt-get -f install and next apt-get upgrade . Then we should be able see the page like below on address http://localhost:8080 After unlock and installation some pluggins we should be able to see something like below. Next I added simple job which will check the repository and run command gradle -p nany-server test . The result is on an image below. I think that few of us met with lost jobs definitions. What then? We need to define each job manually again. From my point of view the bette...