forked from cyberark/conjur-api-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
191 lines (167 loc) · 5.56 KB
/
Jenkinsfile
File metadata and controls
191 lines (167 loc) · 5.56 KB
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
191
#!/usr/bin/env groovy
@Library("product-pipelines-shared-library") _
// Automated release, promotion and dependencies
properties([
// Include the automated release parameters for the build
release.addParams(),
// Dependencies of the project that should trigger builds
dependencies([])
])
// Performs release promotion. No other stages will be run
if (params.MODE == "PROMOTE") {
release.promote(params.VERSION_TO_PROMOTE) { infrapool, sourceVersion, targetVersion, assetDirectory ->
// Any assets from sourceVersion Github release are available in assetDirectory
// Any version number updates from sourceVersion to targetVersion occur here
// Any publishing of targetVersion artifacts occur here
// Anything added to assetDirectory will be attached to the Github Release
// Pass assetDirectory through to publish.sh as an env var.
env.ASSET_DIR=assetDirectory
infrapool.agentSh """
export ASSET_DIR="${env.ASSET_DIR}"
export MODE="${params.MODE}"
git checkout "v${sourceVersion}"
echo -n "${targetVersion}" > VERSION
cp VERSION VERSION.original
./bin/build-tools-image.sh
./bin/build-package.sh
summon ./bin/publish.sh
cp target/*.jar "${assetDirectory}"
"""
// Ensure the working directory is a safe git directory for the subsequent
// promotion operations after this block.
infrapool.agentSh 'git config --global --add safe.directory "$(pwd)"'
}
// 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'))
}
environment {
// Sets the MODE to the specified or autocalculated value as appropriate
MODE = release.canonicalizeMode()
}
triggers {
cron(getDailyCronString())
parameterizedCron(getWeeklyCronString("H(1-5)","%MODE=RELEASE"))
}
stages {
// Aborts any builds triggered by another project that wouldn't include any changes
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('Scan for internal URLs') {
steps {
script {
detectInternalUrls()
}
}
}
stage('Get InfraPool Agent') {
steps {
script {
INFRAPOOL_EXECUTORV2_AGENT_0 = getInfraPoolAgent.connected(type: "ExecutorV2", quantity: 1, duration: 1)[0]
}
}
}
stage('Validate Changelog') {
steps {
parseChangelog(INFRAPOOL_EXECUTORV2_AGENT_0)
}
}
// Generates a VERSION file based on the current build number and latest version in CHANGELOG.md
stage('Validate Changelog and set version') {
steps {
script {
updateVersion(INFRAPOOL_EXECUTORV2_AGENT_0, "CHANGELOG.md", "${BUILD_NUMBER}")
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh '''
cp VERSION VERSION.original
version="$(<VERSION)"
echo "Current VERSION content: ${version}"
echo "${version}-SNAPSHOT" > VERSION
cp VERSION VERSION.snapshot
'''
}
}
}
stage('Build') {
steps {
script {
// Build Docker Image for tools (eg mvn)
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './bin/build-tools-image.sh'
// Run Docker Image to compile code and build jar
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './bin/build-package.sh'
}
}
}
stage('Run tests (JDK8)') {
environment {
INFRAPOOL_REGISTRY_URL = "registry.tld"
INFRAPOOL_JDK_VERSION = "8"
}
steps {
script {
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './bin/test.sh'
}
}
}
stage('Run tests and archive results (JDK25)') {
environment {
INFRAPOOL_REGISTRY_URL = "registry.tld"
INFRAPOOL_JDK_VERSION = "25"
}
steps {
script {
lock("api-java-${env.NODE_NAME}") {
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh './bin/test.sh'
INFRAPOOL_EXECUTORV2_AGENT_0.agentStash name: 'jacoco', includes: 'target/site/jacoco/jacoco.xml'
unstash 'jacoco'
codacy action: 'reportCoverage', filePath: "target/site/jacoco/jacoco.xml"
INFRAPOOL_EXECUTORV2_AGENT_0.agentStash includes: 'target/surefire-reports/*.xml', name: "test-results"
unstash 'test-results'
}
}
junit 'target/surefire-reports/*.xml'
}
}
stage('Release') {
when {
expression {
MODE == "RELEASE"
}
}
steps {
script {
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh 'cp VERSION.original VERSION'
release(INFRAPOOL_EXECUTORV2_AGENT_0) { billOfMaterialsDirectory, assetDirectory ->
// Publish release artifacts to all the appropriate locations
// Copy any artifacts to assetDirectory to attach them to the Github release
INFRAPOOL_EXECUTORV2_AGENT_0.agentSh "ASSET_DIR=\"${assetDirectory}\" summon ./bin/publish.sh"
}
}
}
}
}
post {
always {
releaseInfraPoolAgent(".infrapool/release_agents")
// Resolve ownership issue before running infra post hook
sh 'git config --global --add safe.directory ${PWD}'
infraPostHook()
}
}
}