forked from essk13/Ecolog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
57 lines (57 loc) · 1.75 KB
/
Jenkinsfile
File metadata and controls
57 lines (57 loc) · 1.75 KB
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
pipeline {
agent none
options { skipDefaultCheckout(false) }
stages {
stage('git pull') {
agent any
steps {
mattermostSend (
color: "#2A42EE",
message: "Build STARTED: ${env.JOB_NAME} #${env.BUILD_NUMBER} (<${env.BUILD_URL}|Link to build>)"
)
checkout scm
}
}
stage('Docker build') {
agent any
steps {
script {
try {
sh 'cp /var/jenkins_home/ecolog-secrets/application-secret.yml ./backend/src/main/resources/'
sh 'docker-compose build'
}catch(e) {
mattermostSend (
color: "danger",
message: "Build FAILED: ${env.JOB_NAME} #${env.BUILD_NUMBER} (<${env.BUILD_URL}|Link to build>)"
)
}
}
}
}
stage('Docker run') {
agent any
steps {
script {
try {
sh 'docker-compose up -d'
}catch(e) {
currentBuild.result = "FAILURE"
} finally {
if(currentBuild.result == "FAILURE"){
mattermostSend (
color: "danger",
message: "Build FAILED: ${env.JOB_NAME} #${env.BUILD_NUMBER} (<${env.BUILD_URL}|Link to build>)"
)
}
else{
mattermostSend (
color: "good",
message: "Build SUCCESS: ${env.JOB_NAME} #${env.BUILD_NUMBER} (<${env.BUILD_URL}|Link to build>)"
)
}
}
}
}
}
}
}