-
- JenkinsThis article describes how to build a continuous integration cycle for Java development with the Jenkins continuous integration build server.
- Table of Contents1. Using the Jenkins build server2. Installation2.1. Installing of the Jenkins server on Ubuntu2.3. Using the .WAR file of Jenkins3. Configure Jenkins3.1. Configuration the JDK location3.2. Secure Jenkins3.3. Generate ssh key for Jenkins user4. Jenkins management4.1. Plug-in management4.2. Restart your Jenkins5. Support for the Git version control systems6. Setting up a Jenkins job7. Prerequisites for build Android apps with Jenkins8. How to build your Android application with Jenkins8.1. Android Jenkins build job prerequisites8.2. Installation of the Android SDK8.3. Jenkins Plug-ins for installation8.4. Running an Android build with Jenkins8.5. Other useful plug-ins9. Jenkins backup and copying files9.1. Jenkins backup and copying files9.2. Managing Jenkins with Git
- 1. Using the Jenkins build serverContinuous integration is a process in which all development work is integrated as early as possible and the resulting artifacts are automatically created and tested. This process should identify errors as very early in the process.Jenkins is one open source tool to perform continuous integration and build automation. The basic functionality of Jenkins is to execute a predefined list of steps. The trigger for this execution can be time or event based. For example every 20 minutes or after a new commit in a Git repository.The list of steps can, for example, include:• perform a software build with Apache Maven or Gradle• Run a shell script• Archive the build result• Afterwards start the integration testsJenkins also monitors the execution of the steps and allows to stop the process if one of the steps fails. Jenkins can also send out notifications about the build success or failure.Jenkins can be extended by additional plug-ins, e.g., for building and testing Android applications or to support the Git version control system.2. InstallationJenkins can be started via the command line or can run in a web application server. Under Linux you can also install Jenkins as a system service.For most platforms you have native packages, see the Jenkins Homepage.2.2. Installing of the Jenkins server on UbuntuJenkins provides Debian/Ubuntu packages which install Jenkins and register Jenkins as start service. See the Install Jenkins on Ubuntu description.Jenkins stores all the settings, logs and build artifacts in its home directory. The default installation directory is/var/lib/jenkins under Ubuntu.This creates a /etc/init.d/jenkins start script which starts Jenkins automatically at boot time. If you installed Jenkins locally, you find it running under the following URL: http://localhost:8080/2.3. Using the .WAR file of JenkinsDownload the jenkins.war file from Jenkins Homepage.You can also start Jenkins directly via the command line with java -jar jenkins*.war. If you start it locally, you find it running under the following URL: http://localhost:8080/To run it in your Tomcat server, put the .WAR file into the webapps directory. If you start Tomcat, your Jenkins installation will be available under http://localhost:8080/jenkinsNote: If the jenkins.war is deployed in your webapps directory, but cannot be started and the tomcat manager says “FAIL - Application at context path /jenkins could not be started ”, you may need to grant the permissons for JENKINS_HOME.
- cd /usr/share/tomcat7sudo mkdir .jenkinssudochown tomcat7:nogroup .jenkins
- This makes the .jenkins folder writable and Jenkins can use it.3. Configure Jenkins3.1. Configuration the JDK locationBefore using Jenkins to build Java applications, you need to configure the location or it where your JDK installation is. Select Manage Jenkins and afterwards Configure System.
- Enter the correct path to your JDK, Apache Ant and Maven and press the Save button below. Jenkins can also install these for your automatically.
- 3.2. Secure JenkinsIt is recommended to secure Jenkins. Manage Jenkins and then Configure Global Security. Select the Enable security flag. The easiest way is to use Jenkins own user database. Create at least the user "Anonymous" with read access. Also create entries for the users you want to add in the next step.
- On the login page, select Create an account to create the users you just gave access
- Go to Manage Jenkins, Manage and Assign Roles and then Assign Roles to grant the newly created user additional access rights.
- Navigate to Manage Roles to define access restrictions in detail. Pattern is a regex value of the job name. The following grants unregistered users read-only access to your build jobs that start with the C-MASTER or M-MASTER prefix and only those.
- 3.3. Generate ssh key for Jenkins user
- If you want to access a private Git repo, for example at Github, you need to generate an ssh key-pair. Create a SSH key with the following command: sudo -u jenkins ssh-keygen.
- 4. Jenkins management
- 4.1. Plug-in management
- Jenkins can be extended via additional plug-ins with more functionality. You can configure your plug-ins via the Manage Jenkins → Manager Plugins link.
- To install plugins in Jenkins select use the Manage Jenkins → Manager Plugins link and search for the plugin you want to install. Select it from the list and select to install it and restart Jenkins.
- The following table is a summary of commonly used plug-ins.
- Table 1. Jenkins plug-ins
- 4.2. Restart your Jenkins
- You can manually restart Jenkins by adding restart as URL parameter
- 5. Support for the Git version control systems
- Jenkins supports the Git version control system via a plugin. Select the Manage Jenkins → Manager Plugins link. Here you have to install the Git Plugin.
- To clone a Git repostory via Jenkins you need to enter the email and user name for your Jenkins system. For this switch into your job directory and run the git config command.
- 6. Setting up a Jenkins job
- The build of a project is handled via jobs in Jenkins. Select New Item from the menu
- Afterwards enter a name for the job and select Freestyle Job. Press OK to create a new Job in Jenkins.
- The next page allows you to configure your job. If you for example using Git, enter the URL to the Git repository. If the repository is not public, you may also need to configure the credentials.
- Specify when and how your build should be triggered. The following example polls the Git repository every 15 min and triggers a build, if something has changed in the repo.I typically delete the workspace before a build to avoid any side-effect. In the Build section you can add a build step, e.g., a Maven build.Press Save to finish the job definition. Press Build Now on the job page to validate the job works as expected.After a while the job should go to green or blue (depending on your configuration), if successful. Click on the job and afterwards on Console Output to see the log file in case of an error or to validate that log looks as expected.7. Prerequisites for build Android apps with JenkinsThe following descriptions for build Android applications with Jenkins assume that you have already a correct Gradle build file for your Android application. See Android build tutorial.8. How to build your Android application with Jenkins8.1. Android Jenkins build job prerequisitesJenkins supports the automatic building and testing of Android applications. To create a build job on Jenkins you need to have a working build setup. The Android tooling generates automatically a valid Gradle build file.8.2. Installation of the Android SDKThe Android SDk must be available on the server. If you build server has no display server you need to install the Android SDK from the command line. You also need to configure the location for the Android SKD for Jenkins.Use android list targets to see what ABIs are installed. If no are listed manual install one.8.3. Jenkins Plug-ins for installationYou need the follwing plug-ins to build Android application with Jenkins:• Gradle Plugin• Git Plugin - if Git is used for the project sources• Android Emulator Plugin - supporting starting and unlocking an Android emulator and blocks the build until the emulator has started. Required for running tests. A detailed description of this plugin can be found under the following URL: Android Emulator Plugin Jenkins page.8.4. Running an Android build with JenkinsTo create an Android build job on Jenkins, select New Job, enter a job name and select the Build a free-style software project option.You configure from where the source should be cloned.You configure the emulator which should be started. Ensure that you do not select the Show emulator window option, as your build server should not depend on the availability of a display server.Add a Gradle build step to your Jenkins jobs.8.5. Other useful plug-insThe Android Emulator Plugin supports a new job with the Build multi-configuration project option. This option allows you to test multiple emulator configurations at the same time. You can, for example, test different languages, densities, screen resolutions, etc. Typically you have two Jobs, one for a simple build and test run and a multi-configuration project to test the build on different device configurations.You can combine Android Emulator Plugin with the Amazon-EC2-Plug-in to run the build and theJenk tests on several machines simultaneously.Another useful plug-in is the Lint plug-in which allows to run your Lint checks via Jenkins. See Lint Plug-in for details.9. Jenkins backup and copying files9.1. Jenkins backup and copying filesJenkins stores all the settings, logs and build artifacts in its home directory, for example, in /var/lib/jenkins under the default install location of Ubuntu.To create a backup of your Jenkins setup, just copy this directory.The jobs directory contains the individual jobs configured in the Jenkins install. You can move a job from one Jenkins installation to another by copying the corresponding job directory. You can also copy a job directory to clone a job or rename the directory.Click reload config button in the Jenkins web user interface to force Jenkins to reload configuration from the disk.See Adminstration of Jenkins for details.9.2. Managing Jenkins with GitJenkins supports the https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin plug-in which allows you to store every change in a Git repo.It is also possible to manually maintain the Jenkins configuration in a Git repo.
Wednesday, October 17, 2018
Continuous integration with Jenkins - Tutorial
Subscribe to:
Posts (Atom)