forked from rauchg/slackin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
71 lines (60 loc) · 1.39 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
properties([pipelineTriggers([githubPush()])])
pipeline {
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10'))
timeout(time: 30, unit: 'MINUTES')
}
agent {
kubernetes {
label 'worker-slackin'
inheritFrom 'kaniko-slim'
}
}
environment {
ORG = 'flowcommerce'
}
stages {
stage('Checkout') {
steps {
checkoutWithTags scm
script {
VERSION = new flowSemver().calculateSemver() //requires checkout
}
}
}
stage('Commit SemVer tag') {
when { branch 'main' }
steps {
script {
new flowSemver().commitSemver(VERSION)
}
}
}
stage('Build and push docker image release') {
when { branch 'main' }
steps {
container('kaniko') {
script {
semver = VERSION.printable()
sh """
/kaniko/executor -f `pwd`/Dockerfile -c `pwd` \
--snapshot-mode=redo --use-new-run \
--destination ${env.ORG}/slackin:$semver
"""
}
}
}
}
stage('Deploy Helm chart') {
when { branch 'main' }
steps {
container('helm') {
script {
new helmCommonDeploy().deploy('slackin', 'apicollective', VERSION.printable(), 420)
}
}
}
}
}
}