forked from CJRivas/jenkinspipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
47 lines (44 loc) · 1.43 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
pipeline {
agent any
tools {
maven 'localMarven'
}
/*
parameters {
string(name: 'tomcat_dev', defaultValue: '35.166.210.154', description: 'Staging Server')
string(name: 'tomcat_prod', defaultValue: '34.209.233.6', description: 'Production Server')
}
*/
triggers {
pollSCM('* * * * *')
}
stages{
stage('Build'){
steps {
sh 'mvn clean package'
}
post {
success {
echo 'Now Archiving...'
archiveArtifacts artifacts: '**/target/*.war'
}
}
}
stage ('Deployments'){
parallel{
stage ('Deploy to Staging'){
steps {
//sh "scp -i /home/jenkins/tomcat-demo.pem **/target/*.war ec2-user@${params.tomcat_dev}:/var/lib/tomcat7/webapps"
sh "cp **/target/*.war /home/zhaohua/Documents/apache-tomcat-8.5.34-staging/webapps"
}
}
stage ("Deploy to Production"){
steps {
//sh "scp -i /home/jenkins/tomcat-demo.pem **/target/*.war ec2-user@${params.tomcat_prod}:/var/lib/tomcat7/webapps"
sh "cp **/target/*.war /home/zhaohua/Documents/apache-tomcat-8.5.34-prod/webapps"
}
}
}
}
}
}