-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
95 lines (91 loc) · 2.94 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
95
env.TAG = "${env.BRANCH_NAME}-${env.BUILD_NUMBER}"
properties([
disableConcurrentBuilds(),
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '50')),
[
$class : 'BuildBlockerProperty',
blockingJobs : "intermittency-${env.BRANCH_NAME}/.*",
blockLevel : 'GLOBAL',
scanQueueFor : 'BUILDABLE',
useBuildBlocker: true
]
])
stage('kaniko') {
podTemplate(yaml: '''
kind: Pod
spec:
containers:
- name: kaniko
image: gcr.io/kaniko-project/executor:v1.15.0-debug
command: ['/busybox/cat']
tty: true
securityContext:
runAsUser: 0
privileged: true
resources:
requests:
memory: "3Gi"
cpu: "1"
limits:
# memory: "3Gi"
# cpu: "2.5"
'''
) {
node(POD_LABEL) {
checkout scm
container('kaniko') {
sh "/kaniko/executor -f Dockerfile -c . --cache=true --insecure --destination=docker-registry.docker-registry:5000/intermittency:${env.TAG} --destination=docker-registry.docker-registry:5000/intermittency:latest"
}
}
}
}
podTemplate(yaml: """
kind: Pod
spec:
containers:
- name: app
image: docker-registry:5000/intermittency:${env.TAG}
command: ['/bin/cat']
tty: true
envFrom:
- secretRef:
name: intermittency-${env.BRANCH_NAME == 'production' ? 'production' : 'master'}
resources:
requests:
cpu: "1"
memory: "0.5Gi"
"""
) {
node(POD_LABEL) {
container('app') {
stage('test app') {
timeout(time: 10, unit: 'MINUTES') {
sh 'cd /app ; RAILS_ENV=test rake db:migrate'
try {
sh 'cd /app ; rspec spec -f d --format RspecJunitFormatter --out ${WORKSPACE}/rspec.xml'
sh "cd /app ; cp -rv coverage app lib spec ${env.WORKSPACE}"
} finally {
junit allowEmptyResults: true, testResults: 'rspec.xml'
cobertura autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'coverage/coverage.xml', conditionalCoverageTargets: '70, 0, 0', failUnhealthy: false, failUnstable: false, lineCoverageTargets: '80, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '80, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
}
}
}
stage('deploy') {
if (env.BRANCH_NAME == "master" || env.BRANCH_NAME == "production") {
sh "RAILS_ENV=development cd /app && rake db:migrate"
}
sh "cp /app/jobdsl.groovy ."
jobDsl(targets: 'jobdsl.groovy',
additionalParameters: [
TAG: env.TAG,
BRANCH_NAME: env.BRANCH_NAME
],
removedJobAction: 'DELETE'
)
if (env.BRANCH_NAME == "master" || env.BRANCH_NAME == "production") {
build wait: false, job: "intermittency-${env.BRANCH_NAME}/refresh"
}
}
}
}
}