-
Notifications
You must be signed in to change notification settings - Fork 36
/
Jenkinsfile
executable file
·94 lines (82 loc) · 1.93 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
90
91
92
93
94
properties([pipelineTriggers([githubPush()])])
pipeline {
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10'))
timeout(time: 30, unit: 'MINUTES')
}
agent {
kubernetes {
label 'worker-apibuilder-generator'
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}/apibuilder-generator:$semver
"""
}
}
}
}
stage('Display Helm Diff') {
when {
allOf {
not { branch 'main' }
changeRequest()
expression {
return changesCheck.hasChangesInDir('deploy')
}
}
}
steps {
script {
container('helm') {
new helmDiff().diff('apibuilder-generator')
}
}
}
}
stage('Deploy Helm chart') {
when { branch 'main' }
parallel {
stage('deploy apibuilder-generator') {
steps {
script {
container('helm') {
new helmCommonDeploy().deploy('apibuilder-generator', 'apicollective', VERSION.printable(), 420)
}
}
}
}
}
}
}
}