-
Notifications
You must be signed in to change notification settings - Fork 5
/
Jenkinsfile
80 lines (67 loc) · 1.97 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
#!/usr/bin/env groovy
pipeline {
agent { label 'executor-v2' }
options {
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30'))
}
triggers {
cron(getDailyCronString())
}
stages {
stage('Test') {
steps {
milestone(1)
sh './test.sh'
}
post {
always {
junit 'spec/reports/*.xml'
junit 'features/reports/*.xml'
junit 'features_v4/reports/*.xml'
cobertura autoUpdateHealth: true, autoUpdateStability: true, coberturaReportFile: 'coverage/coverage.xml', conditionalCoverageTargets: '100, 0, 0', failUnhealthy: true, failUnstable: false, lineCoverageTargets: '99, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '100, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
// TODO: Uncomment this once CC for this repo is enabled
// ccCoverage("cobertura")
}
}
}
// Only publish to RubyGems if branch is 'master'
// AND someone confirms this stage within 5 minutes
stage('Publish to RubyGems?') {
agent { label 'releaser-v2' }
when {
allOf {
branch 'master'
expression {
boolean publish = false
if (env.PUBLISH_GEM == "true") {
return true
}
try {
timeout(time: 5, unit: 'MINUTES') {
input(message: 'Publish to RubyGems?')
publish = true
}
} catch (final ignore) {
publish = false
}
return publish
}
}
}
steps {
// Clean up first
sh 'docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd'
sh './publish.sh'
// Clean up again...
sh 'docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd'
deleteDir()
}
}
}
post {
always {
cleanupAndNotify(currentBuild.currentResult)
}
}
}