-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile4
86 lines (71 loc) · 3 KB
/
Jenkinsfile4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env groovy
@Library('shared-library@master') _ //master or whatever branch
def getDockerTag(){
def tag = sh script: 'git rev-parse HEAD', returnStdout: true
return tag
}
pipeline{
agent any
environment{
Docker_tag = getDockerTag()
}
parameters {
choice(name:'mvnaction',
choices: 'Clean\nCompile\nTest\nInstall',
description: 'based on selection jenkins will run resepective maven command')
}
stages{
stage('build'){
agent {
docker {
image 'maven'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
script{
sh "mvn --version"
sh "echo $mvnaction"
if ("${mvnaction}" == "Clean")
{
sh "mvn clean"
}
else if ("${mvnaction}" == "Compile")
{
sh "mvn clean compile"
}
else if ("${mvnaction}" == "Test")
{
sh "mvn clean test"
}
else if ("${mvnaction}" == "Install")
{
sh "mvn clean install"
}
}
}
}
stage ('docker build and push') {
when {
expression { params.mvnaction == 'Install' }
}
steps {
script{
sh 'cp -r ../shared-library@2/target .'
sh 'docker build . -t deekshithsn/devops-training:$Docker_tag'
withCredentials([string(credentialsId: 'docker_password', variable: 'docker_password')]) {
sh 'docker login -u deekshithsn -p $docker_password'
sh 'docker push deekshithsn/devops-training:$Docker_tag'
}
}
}
}
stage ('Check logs') {
steps {
script {
sh '! grep "WARNING" currentBuild.rawBuild.getLog(10000).join('\n')'
}
}
}
}
}