Posts

Showing posts from April, 2020

Step by step guide for Jenkins FreeStyle Project

Image
Introduction In this article, we will be creating jenkins free style project  for build, test and deploy WebApi (asp.net core) project. Steps will be as follows: 1. Install Jenkins on Windows Machine 2. Create WebAPI and MSTest project using Visual Studio 3. Identify steps and plugins required for CI/CD 4. Install Jenkins Plugins 5. Configure Plugins 6. Create a FreeStyle Job Step1: Install Jenkins on Windows Machine Download and Install latest version of jdk from below URL. https://www.oracle.com/technetwork/java/javase/downloads/index.html Download and Install Jenkins from  https://jenkins.io/download/  by clicking on Windows option. Follow the installation instructions. Step2: Create WebAPI and MSTest Project on Windows 1. Create simple WebAPI project and MSTest project. 2. Create account on www.github.com and create repository on it. 3. Download git from https://git-scm.com/downloads and install it. 4. Push the code i...