-
Notifications
You must be signed in to change notification settings - Fork 5
/
Jenkinsfile
190 lines (168 loc) · 4.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/usr/bin/env groovy
@Library("product-pipelines-shared-library") _
// Automated release, promotion and dependencies
properties([
release.addParams()
])
if (params.MODE == "PROMOTE") {
release.promote(params.VERSION_TO_PROMOTE) { infrapool, sourceVersion, targetVersion, assetDirectory ->
infrapool.agentSh './publish.sh'
}
// Copy Github Enterprise release to Github
release.copyEnterpriseRelease(params.VERSION_TO_PROMOTE)
return
}
pipeline {
agent { label 'conjur-enterprise-common-agent' }
options {
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30'))
}
triggers {
cron(getDailyCronString())
}
environment {
MODE = release.canonicalizeMode()
}
stages {
stage ("Skip build if triggering job didn't create a release") {
when {
expression {
MODE == "SKIP"
}
}
steps {
script {
currentBuild.result = 'ABORTED'
error("Aborting build because this build was triggered from upstream, but no release was built")
}
}
}
stage('Get InfraPool Agent') {
steps {
script {
infrapool = getInfraPoolAgent.connected(type: "ExecutorV2", quantity: 1, duration: 1)[0]
}
}
}
stage('Validate Changelog and set version') {
steps {
parseChangelog(infrapool)
updateVersion(infrapool, "CHANGELOG.md", "${BUILD_NUMBER}")
}
}
stage('Prepare CC Report Dir'){
steps {
script {
infrapool.agentSh 'mkdir -p coverage'
}
}
}
stage('Test Ruby 3.0') {
environment {
RUBY_VERSION = '3.0'
}
steps {
script {
infrapool.agentSh "./test.sh"
infrapool.agentStash name: 'reports3.0', includes: '**/reports/*.xml'
}
}
post {
always {
unstash 'reports3.0'
}
}
}
stage('Test Ruby 3.1') {
environment {
RUBY_VERSION = '3.1'
}
steps {
script {
infrapool.agentSh "./test.sh"
infrapool.agentStash name: 'reports3.1', includes: '**/reports/*.xml'
}
}
post {
always {
unstash 'reports3.1'
}
}
}
stage('Test Ruby 3.2') {
environment {
RUBY_VERSION = '3.2'
}
steps {
script {
infrapool.agentSh "./test.sh"
infrapool.agentStash name: 'reports3.2', includes: '**/reports/*.xml'
}
}
post {
always {
unstash 'reports3.2'
}
}
}
stage('Submit Coverage Report'){
steps{
script {
infrapool.agentStash name: 'coverage', includes: '**/coverage/**'
}
unstash 'coverage'
cobertura autoUpdateHealth: false,
autoUpdateStability: false,
coberturaReportFile: 'coverage/coverage.xml',
conditionalCoverageTargets: '70, 0, 0',
failUnhealthy: false,
failUnstable: false,
maxNumberOfBuilds: 0,
lineCoverageTargets: '70, 0, 0',
methodCoverageTargets: '70, 0, 0',
onlyStable: false,
sourceEncoding: 'ASCII',
zoomCoverageChart: false
publishHTML([reportDir: 'coverage', reportFiles: 'index.html', reportName: 'Coverage Report', reportTitles: '',
allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true])
codacy action: 'reportCoverage', filePath: "coverage/coverage.xml"
}
post {
always {
// only call junit once to submit all reports, otherwise it will only submit reports
// from the last junit call as it overwrites the previously submitted reports
junit '**/reports/*.xml'
archiveArtifacts artifacts: "coverage/coverage.xml", fingerprint: false
}
}
}
stage('Release') {
when {
expression {
MODE == "RELEASE"
}
}
steps {
script {
release(infrapool) {
// Clean up all but the calculated VERSION
infrapool.agentSh '''docker run -i --rm -v $(pwd):/src -w /src --entrypoint /bin/sh alpine/git \
-c "git config --global --add safe.directory /src && \
git clean -fdx \
-e VERSION \
-e bom-assets/ \
-e release-assets" '''
infrapool.agentSh './publish.sh'
infrapool.agentSh 'cp conjur-api-*.gem release-assets/.'
}
}
}
}
}
post {
always {
releaseInfraPoolAgent(".infrapool/release_agents")
}
}
}