forked from lerndevops/samplejavaapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
51 lines (50 loc) · 1.5 KB
/
Jenkinsfile
File metadata and controls
51 lines (50 loc) · 1.5 KB
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
def workspace = "home\\jagenthome"
def server = "TProject2"
pipeline {
agent {
node {
label server
customWorkspace workspace
}
}
stages {
stage('compile') {
steps {
echo 'compiling..'
git url: 'https://github.com/lerndevops/samplejavaapp'
sh script: '/opt/apache-maven-3.8.5/bin/mvn compile'
}
}
stage('unit-test') {
steps {
echo 'unittest..'
sh script: '/opt/apache-maven-3.8.5/bin/mvn test'
}
post {
success {
junit 'target/surefire-reports/*.xml'
}
}
}
stage('package') {
steps {
echo 'package......'
sh script: '/opt/apache-maven-3.8.5/bin/mvn package'
}
}
stage('build & push docker image') {
steps {
withDockerRegistry(credentialsId: 'DOCKER_HUB_LOGIN', url: 'https://index.docker.io/v1/') {
sh script: 'cd $WORKSPACE'
sh script: 'docker build --file Dockerfile --tag docker.io/palakmahajan/samplejavaapp:$BUILD_NUMBER .'
sh script: 'docker push docker.io/palakmahajan/samplejavaapp:$BUILD_NUMBER'
}
}
}
stage('deploy-Server') {
steps {
sh script: 'sudo ansible-playbook --inventory /tmp/myinv $WORKSPACE/deploy/deploy-kube.yml --extra-vars "env=server build=$BUILD_NUMBER"'
}
}
}
}