-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
296 lines (265 loc) · 9.96 KB
/
Jenkinsfile
File metadata and controls
296 lines (265 loc) · 9.96 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
pipeline {
agent any
environment {
GO_VERSION = '1.21'
DOCKER_IMAGE_TAG = "${env.BUILD_NUMBER}"
REGISTRY = 'your-registry.com'
APP_NAME = 'distributed-gradle-building'
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Setup Go Environment') {
steps {
script {
// Install Go if not available
sh '''
if ! command -v go &> /dev/null; then
echo "Installing Go ${GO_VERSION}..."
wget -q https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
fi
go version
'''
}
}
}
stage('Dependencies') {
steps {
dir('go') {
sh 'go mod download'
sh 'go mod tidy'
}
}
}
stage('Unit Tests') {
steps {
dir('go') {
sh '''
go test ./coordinatorpkg ./workerpkg ./cachepkg ./monitorpkg -v -race -coverprofile=coverage.out -covermode=atomic
go tool cover -func=coverage.out
'''
}
}
post {
always {
dir('go') {
publishCoverage adapters: [coberturaAdapter('coverage.out')]
}
}
}
}
stage('Integration Tests') {
steps {
dir('go') {
sh '''
go test ./tests/integration -v -timeout 60s -coverprofile=integration-coverage.out
go tool cover -func=integration-coverage.out
'''
}
}
}
stage('Security Tests') {
steps {
dir('go') {
sh '''
go test ./tests/security -v -timeout 30s -coverprofile=security-coverage.out
# Run gosec security scanner
if command -v gosec &> /dev/null; then
gosec ./...
fi
'''
}
}
}
stage('Build Binaries') {
steps {
dir('go') {
sh '''
mkdir -p bin
echo "Building coordinator..."
go build -ldflags="-X main.version=${BUILD_NUMBER}" -o bin/coordinator main.go
echo "Building worker..."
go build -ldflags="-X main.version=${BUILD_NUMBER}" -o bin/worker worker.go
echo "Building cache server..."
go build -ldflags="-X main.version=${BUILD_NUMBER}" -o bin/cache_server cache_server.go
echo "Building monitor..."
go build -ldflags="-X main.version=${BUILD_NUMBER}" -o bin/monitor monitor.go
echo "Build completed successfully"
ls -la bin/
'''
}
}
}
stage('Build Docker Images') {
steps {
script {
// Build coordinator image
sh """
docker build -t ${REGISTRY}/${APP_NAME}-coordinator:${DOCKER_IMAGE_TAG} \\
--build-arg BINARY_PATH=go/bin/coordinator \\
-f docker/Dockerfile.coordinator .
"""
// Build worker image
sh """
docker build -t ${REGISTRY}/${APP_NAME}-worker:${DOCKER_IMAGE_TAG} \\
--build-arg BINARY_PATH=go/bin/worker \\
-f docker/Dockerfile.worker .
"""
// Build cache server image
sh """
docker build -t ${REGISTRY}/${APP_NAME}-cache:${DOCKER_IMAGE_TAG} \\
--build-arg BINARY_PATH=go/bin/cache_server \\
-f docker/Dockerfile.cache .
"""
// Build monitor image
sh """
docker build -t ${REGISTRY}/${APP_NAME}-monitor:${DOCKER_IMAGE_TAG} \\
--build-arg BINARY_PATH=go/bin/monitor \\
-f docker/Dockerfile.monitor .
"""
}
}
}
stage('Push Docker Images') {
when {
anyOf {
branch 'main'
branch 'master'
tag '*'
}
}
steps {
script {
sh """
docker push ${REGISTRY}/${APP_NAME}-coordinator:${DOCKER_IMAGE_TAG}
docker push ${REGISTRY}/${APP_NAME}-worker:${DOCKER_IMAGE_TAG}
docker push ${REGISTRY}/${APP_NAME}-cache:${DOCKER_IMAGE_TAG}
docker push ${REGISTRY}/${APP_NAME}-monitor:${DOCKER_IMAGE_TAG}
# Tag as latest for main branch
if [ "${env.BRANCH_NAME}" = "main" ] || [ "${env.BRANCH_NAME}" = "master" ]; then
docker tag ${REGISTRY}/${APP_NAME}-coordinator:${DOCKER_IMAGE_TAG} ${REGISTRY}/${APP_NAME}-coordinator:latest
docker tag ${REGISTRY}/${APP_NAME}-worker:${DOCKER_IMAGE_TAG} ${REGISTRY}/${APP_NAME}-worker:latest
docker tag ${REGISTRY}/${APP_NAME}-cache:${DOCKER_IMAGE_TAG} ${REGISTRY}/${APP_NAME}-cache:latest
docker tag ${REGISTRY}/${APP_NAME}-monitor:${DOCKER_IMAGE_TAG} ${REGISTRY}/${APP_NAME}-monitor:latest
docker push ${REGISTRY}/${APP_NAME}-coordinator:latest
docker push ${REGISTRY}/${APP_NAME}-worker:latest
docker push ${REGISTRY}/${APP_NAME}-cache:latest
docker push ${REGISTRY}/${APP_NAME}-monitor:latest
fi
"""
}
}
}
stage('Performance Tests') {
when {
anyOf {
branch 'main'
branch 'master'
tag '*'
}
}
steps {
dir('go') {
sh '''
go test ./tests/performance -v -timeout 120s -bench=. -run=^$ -count=3 | tee performance-bench.txt
'''
}
}
post {
always {
archiveArtifacts artifacts: 'go/performance-bench.txt', fingerprint: true
}
}
}
stage('Load Tests') {
when {
anyOf {
branch 'main'
branch 'master'
tag '*'
}
}
steps {
dir('go') {
sh '''
go test ./tests/load -v -timeout 120s
'''
}
}
}
stage('Deploy to Staging') {
when {
branch 'develop'
}
steps {
script {
sh '''
echo "Deploying to staging environment..."
# Add your staging deployment commands here
# Example: kubectl apply -f k8s/staging/ or docker-compose up -d
'''
}
}
}
stage('Deploy to Production') {
when {
anyOf {
branch 'main'
branch 'master'
tag '*'
}
}
steps {
script {
timeout(time: 15, unit: 'MINUTES') {
input message: 'Deploy to production?', ok: 'Deploy'
}
sh '''
echo "Deploying to production environment..."
# Add your production deployment commands here
# Example: kubectl apply -f k8s/production/ or helm upgrade
'''
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts artifacts: 'go/bin/*', fingerprint: true
archiveArtifacts artifacts: 'docker-compose*.yml', fingerprint: true
}
}
}
post {
always {
// Clean up workspace
cleanWs()
// Send notifications
script {
def buildStatus = currentBuild.currentResult
def subject = "${env.JOB_NAME} - Build #${env.BUILD_NUMBER} - ${buildStatus}"
def body = """
Build Status: ${buildStatus}
Build URL: ${env.BUILD_URL}
Branch: ${env.BRANCH_NAME}
Commit: ${env.GIT_COMMIT}
"""
emailext subject: subject,
body: body,
to: 'dev-team@company.com',
attachLog: true
}
}
success {
echo 'Pipeline completed successfully!'
}
failure {
echo 'Pipeline failed!'
}
}
}