forked from TannDev/maelstrom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
54 lines (48 loc) · 1.71 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
#!/usr/bin/env groovy
pipeline {
agent any
stages {
stage('Build') {
steps {
// script {
// currentBuild.displayName = "Some build"
// currentBuild.description = "A description of that build"
// }
echo 'Building...'
// Build the image.
script {
image = docker.build("jftanner/maelstrom")
}
}
}
stage('Test') {
steps {
echo 'Testing...'
// TODO Actually test something
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
script {
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
image.push('latest')
}
sh 'ssh docker.tanndev.com rm -rf maelstrom'
sh 'ssh docker.tanndev.com mkdir maelstrom'
sh 'scp docker-compose.yml docker.tanndev.com:maelstrom/'
sh 'ssh docker.tanndev.com "cd maelstrom && docker-compose pull app"'
sh 'ssh docker.tanndev.com "cd maelstrom && docker-compose up -d"'
}
slackSend channel: '#maelstrom', color: 'good', message: 'Successfully published <https://maelstrom.tanndev.com|Maelstrom App>.'
}
}
}
post {
failure {
slackSend channel: '#maelstrom', color: 'danger', message: "Failed to build/publish Maelstrom App. (<${env.JOB_URL}|Pipeline>) (<${env.BUILD_URL}console|Console>)"
}
}
}