This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
67 lines (58 loc) · 1.95 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
#!/usr/bin/env groovy
pipeline {
agent {
label 'nodejs && docker'
}
stages {
stage('Build') {
steps {
echo 'Building...'
// Build the image.
script {
image = docker.build("jftanner/initiate")
}
}
}
stage('Test') {
steps {
echo 'Testing...'
// TODO Actually test something
}
}
stage('Release') {
when {
branch 'master'
}
steps {
// TODO Replace with SemanticRelease
script {
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
image.push('latest')
}
}
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
script {
sshagent(['jenkins.ssh']) {
sh 'ssh docker.tanndev.com rm -rf initiate'
sh 'ssh docker.tanndev.com mkdir initiate'
sh 'scp docker-compose* docker.tanndev.com:initiate/'
sh 'ssh docker.tanndev.com "cd initiate && docker-compose pull"'
sh 'ssh docker.tanndev.com "cd initiate && docker-compose -f docker-compose.yml -f docker-compose.production.yml up -d"'
}
slackSend channel: '#initiate', color: 'good', message: "Deployed <https://initiate.tanndev.com|Initiate>. (<${env.BUILD_URL}console|Build Console>)"
}
}
}
}
post {
failure {
slackSend channel: '#initiate', color: 'danger', message: "Failed to build/publish Initiate. (<${env.JOB_URL}|Pipeline>) (<${env.BUILD_URL}console|Build Console>)"
}
}
}