forked from CJRivas/jenkinspipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
42 lines (37 loc) · 1.2 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
pipeline {
agent any
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('* * * * *') // Polling Source Control
}
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"
}
}
stage ("Deploy to Production"){
steps {
sh "scp -i /home/jenkins/tomcat-demo.pem **/target/*.war ec2-user@${params.tomcat_prod}:/var/lib/tomcat7/webapps"
}
}
}
}
}
}