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' + } + + +}