-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
90 lines (81 loc) · 2.25 KB
/
Jenkinsfile
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
87
88
89
90
pipeline {
agent any
tools {
maven "Maven"
jdk "jdk"
}
environment {
DOCKER_IMAGE_NAME = 'calculator'
GITHUB_REPO_URL = 'https://github.com/Priyansuvaish/Calculator.git'
}
stages {
stage('Checkout') {
steps {
script {
// Checkout the code from the GitHub repository
git branch: 'master', url: "${GITHUB_REPO_URL}"
}
}
}
stage('Build') {
steps {
// Run Maven build
script {
mvnHome = tool 'Maven' // Retrieves the Maven installation configured in Jenkins global tools
sh "${mvnHome}/bin/mvn clean package"
}
}
}
stage('Test') {
steps {
// Run tests
script {
sh "${mvnHome}/bin/mvn test"
}
}
}
stage('Archive') {
steps {
// Archive the built artifacts
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
stage('Build Docker Image') {
steps {
script {
// Build Docker image
docker.build("${DOCKER_IMAGE_NAME}", '.')
}
}
}
stage('Push Docker Images') {
steps {
script{
docker.withRegistry('', 'de42dccd-1664-4127-a754-d681873bedec') {
sh 'docker tag calculator priyanshugupta753/calculator:latest'
sh 'docker push priyanshugupta753/calculator'
}
}
}
}
stage('Run Ansible Playbook') {
steps {
script {
ansiblePlaybook(
playbook: 'deploy.yml',
inventory: 'inventory'
)
}
}
}
}
post {
// Define actions to take in case of build failure or success
success {
echo 'Build succeeded.'
}
failure {
echo 'Build failed.'
}
}
}