forked from flowcommerce/dependency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
executable file
·83 lines (68 loc) · 2.03 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
properties([pipelineTriggers([githubPush()])])
pipeline {
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10'))
timeout(time: 30, unit: 'MINUTES')
}
agent {
kubernetes {
label 'worker-dependency'
inheritFrom 'default'
containerTemplates([
containerTemplate(name: 'helm', image: "lachlanevenson/k8s-helm:v2.12.0", command: 'cat', ttyEnabled: true),
containerTemplate(name: 'docker', image: 'docker', resourceRequestCpu: '1', resourceRequestMemory: '2Gi', command: 'cat', ttyEnabled: true)
])
}
}
environment {
ORG = 'flowcommerce'
}
stages {
stage('Checkout') {
steps {
checkoutWithTags scm
script {
VERSION = new flowSemver().calculateSemver() //requires checkout
}
}
}
stage('Commit SemVer tag') {
when { branch 'master' }
steps {
script {
new flowSemver().commitSemver(VERSION)
}
}
}
stage('Build and push docker image release') {
when { branch 'master' }
steps {
container('docker') {
script {
semver = VERSION.printable()
docker.withRegistry('https://index.docker.io/v1/', 'jenkins-dockerhub') {
db = docker.build("$ORG/dependency-api:$semver", '--network=host -f api/Dockerfile .')
db.push()
}
docker.withRegistry('https://index.docker.io/v1/', 'jenkins-dockerhub') {
db = docker.build("$ORG/dependency-www:$semver", '--network=host -f www/Dockerfile .')
db.push()
}
}
}
}
}
stage('Deploy Helm chart') {
when { branch 'master' }
steps {
container('helm') {
script {
new helmDeploy().deploy('dependency-api', VERSION.printable())
new helmDeploy().deploy('dependency-www', VERSION.printable())
}
}
}
}
}
}