forked from Landmark-Technologies/maven-web-application
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Jenkinsfile-build23
56 lines (52 loc) · 2.35 KB
/
Jenkinsfile-build23
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
node{
def mavenHome = tool name: 'maven3.9.4'
stage('1.CloneCode'){
//Jenkins running on a Linux system
//sh "git clone https://github.com/LandmakTechnology/maven-web-application"
git "https://github.com/LandmakTechnology/maven-web-application"
//Jenkins running on a windows system
//bat "git clone https://github.com/LandmakTechnology/maven-web-application"
}
stage('2.mvnBuild'){
sh "${mavenHome}/bin/mvn clean package"
}
/*
stage('3.CodeQuality'){
//sh "${mavenHome}/bin/mvn sonar:sonar"
//edit pom.xml propertiesTAG with SonarQube server details
}
stage('4.UploadArtifacts'){
sh "${mavenHome}/bin/mvn deploy"
//edit pom.xml distributionManagement TAG with repository details
//edit settings.xml with nexus-user login credentials
}
stage('5.Deploy2UAT'){
//use deploy-to-container plugin via pipeline syntax
deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war'
//Deploying [/var/lib/jenkins/workspace/tesla-app-pipeline/target/tesla.war]
}
stage('6.6ManualApproval'){
sh "echo 'Please review the application performance' "
timeout(time:600, unit:'MINUTES') {
input message: 'Application ready for deployment, Please review and approve'
}
}
stage('7.Deploy2Prod'){
sh "echo 'Deploy application to the customers/production' "
deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war'
}
stage('8.APM'){
sh "echo 'monitoring and observation and alerting' "
sh "echo 'application performance Monitoring in progress' "
}
*/
stage('9.emailNotification'){
sh "echo 'notify the team for unusual accurances' "
sh "echo 'notify the team if the applications are down' "
sh "echo 'notify the team if the latency is higher that expected' "
emailext body: '''Hi Team,
The build and Deployment status for tesla-app follows.
Regards,
Landmark Technologies ''', recipientProviders: [buildUser(), contributor(), developers(), requestor()], subject: 'build and deployment status', to: '[email protected]'
}
}