From 82cdf5eb0141292298a11fa6d797880179176152 Mon Sep 17 00:00:00 2001 From: Nirosha18 <52007283+Nirosha18@users.noreply.github.com> Date: Wed, 4 Sep 2019 17:06:33 +0530 Subject: [PATCH] Create Jenkinsfile --- Jenkinsfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..4481992 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,27 @@ +def workspace; +node +{ + stage('checkout') + { + checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'bc02c2d3-ac85-4fa8-8d95-3b7f6f038097', url: 'https://github.com/wkhanvisualpathit/VProfile.git']]]) + workspace pwd() + } + stage('static code Analysis') + { + echo 'static code Analysis' + } + stage('Build') + { + echo 'Build the code' + } + stage('Unit Testing') + { + echo 'Unit Testing' + } + stage ('Delivery') + { + echo 'Delivery the code' + } + + +}