-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
89 lines (74 loc) · 2.49 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
pipeline {
agent any
environment {
PATH = "$PATH:/usr/local/bin"
}
stages {
stage("Copy production certificates") {
steps {
script {
echo "Copy certificates STARTED"
sh "sudo cp /home/ec2-user/certificates/cert.pem nginx/src_prod/cert/cert.pem"
sh "sudo cp /home/ec2-user/certificates/pkey.pem nginx/src_prod/cert/pkey.pem"
sh "ls -l nginx/src_prod/cert"
echo "Copy certificates COMPLETED"
}
}
}
stage("Docker-compose down") {
steps {
echo "STOPPING running containers"
sh "docker-compose down"
sh "docker-compose rm -f"
sh "docker network prune -f"
}
}
stage("Docker-compose config") {
steps {
echo "CHECKING configuration"
sh "docker-compose -f docker-compose.yml config"
}
}
stage("Docker-compose build") {
steps {
echo "BUILDING docker images"
sh "ls -l nginx/src_prod/cert"
sh "docker-compose build"
}
}
stage("Docker-compose up") {
steps {
echo "RUNNING containers"
sh "docker-compose up -d"
}
}
stage("REST API tester") {
steps {
echo "REST API tester STARTED"
// TODO
echo "REST API tester COMPLETED"
}
}
}
post {
always {
script {
echo "Docker-compose completed"
echo "Sending email notification.."
mail to: '[email protected]',
subject: "Jenkins notification - ${currentBuild.projectName}",
body: "This email was generated by Jenkins server.\n\nJenkins build triggered. Refer to ${env.BUILD_URL}.\nProject: ${currentBuild.projectName}\nEnvironment: PROD\nResult: ${currentBuild.currentResult}\n\nVisit https://richmondu.com for the updated website!\n"
echo "Sending email notification...DONE"
}
}
success {
echo "Success"
}
failure {
echo "Fail"
sh "docker-compose down"
sh "docker-compose rm -f"
sh "docker network prune -f"
}
}
}