Allure Integration in Jenkins

Automation testing, it’s “all” about Continuous Integration. Jenkins is one of my favorite tools. But, what if we can enrich the platform with even better features in which we can have a cool interface, tables and reports that are more simple and easy for understanding. And all that enriched with report generation in HTML format. […]

Read more
Running simple Ant builds via Jenkins

I assume that a Jenkins is already installed and running on your system. the first step is to open Jenkins in your web browser a If you didn’t changed the default settings you can reach Jenkins on http://localhost:8080/ After you login to Jenkins the following screen should appear: Set up ant in Jenkins in Manage […]

Read more
Jenkins setup and basic security settings

You have to download a platform-specific installer from Jenkins site: https://jenkins-ci.org/ The installation should be easy, if you have any issues with it you can find additional information on the site https://wiki.jenkins-ci.org/display/JENKINS/Containers After the installation in windows you should restart your machine, Jenkins will start up with windows. To check if it running you have […]

Read more
How to install and setup Jenkins

We use Ubuntu system as a base for this tutorial. Before we want to install Jenkins we need to install Java JDK. Ubuntu is using Openjdk, to install it type the following to terminal: $sudo apt-get install openjdk-7-jdk Ubuntu installs the JDK (in my case)to the /usr/lib/jvm/java-7-openjdk-amd64/  folder. In additional, Ubuntu also puts the JDK […]

Read more