-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
321 lines (288 loc) · 10.6 KB
/
Jenkinsfile
File metadata and controls
321 lines (288 loc) · 10.6 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
// Function to update GitHub commit status using Checks API
// Requires GitHub credentials stored in Jenkins with ID 'GITHUB_TOKEN'
// The token needs 'checks:write' permission
def updateGitHubStatus(String state, String description) {
try {
// Get repository info from GIT_URL
def repoInfo = env.GIT_URL.tokenize('/').takeRight(2)
def owner = repoInfo[0].replace('.git', '')
def repo = repoInfo[1].replace('.git', '')
def commit = env.GIT_COMMIT
echo "Updating GitHub check: ${state} - ${description}"
echo "Repository: ${owner}/${repo}"
echo "Commit SHA: ${commit}"
// Map Jenkins states to GitHub Checks API conclusions
def (conclusion, checkStatus, summary) = mapStateToCheck(state, description)
// Use GitHub credentials if available
withCredentials([string(credentialsId: 'GITHUB_TOKEN', variable: 'GITHUB_TOKEN')]) {
// Create or update a check run using GitHub Checks API
def timestamp = new Date().format("yyyy-MM-dd'T'HH:mm:ss'Z'", TimeZone.getTimeZone('UTC'))
def checkData = [
name: 'Jenkins CI',
head_sha: commit,
status: checkStatus,
started_at: timestamp,
details_url: env.BUILD_URL
]
if (conclusion) {
checkData.conclusion = conclusion
checkData.completed_at = timestamp
}
checkData.output = [
title: description,
summary: summary
]
def jsonPayload = groovy.json.JsonOutput.toJson(checkData)
def response = sh(
script: """
curl -s -X POST \
-H "Authorization: token \${GITHUB_TOKEN}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${owner}/${repo}/check-runs \
-d '${jsonPayload}' \
-w "\\nHTTP_STATUS:%{http_code}"
""",
returnStdout: true,
returnStatus: false
).trim()
if (response.contains('HTTP_STATUS:201') || response.contains('HTTP_STATUS:200')) {
echo "✓ GitHub check updated successfully"
} else {
echo "⚠️ GitHub check update response: ${response}"
// Fall back to Status API if Checks API fails
fallbackToStatusAPI(owner, repo, commit, state, description)
}
}
} catch (Exception e) {
echo "⚠️ Could not update GitHub check: ${e.getMessage()}"
// Try fallback to Status API
try {
def repoInfo = env.GIT_URL.tokenize('/').takeRight(2)
def owner = repoInfo[0].replace('.git', '')
def repo = repoInfo[1].replace('.git', '')
fallbackToStatusAPI(owner, repo, env.GIT_COMMIT, state, description)
} catch (Exception fallbackError) {
echo "⚠️ Fallback also failed: ${fallbackError.getMessage()}"
}
}
}
// Helper function to map Jenkins states to GitHub Checks API format
def mapStateToCheck(String state, String description) {
switch(state) {
case 'pending':
return [null, 'in_progress', "Build in progress: ${description}"]
case 'success':
return ['success', 'completed', "✓ ${description}"]
case 'failure':
return ['failure', 'completed', "✗ ${description}"]
case 'error':
return ['failure', 'completed', "✗ ${description}"]
default:
return ['neutral', 'completed', description]
}
}
// Fallback to Status API for compatibility
def fallbackToStatusAPI(String owner, String repo, String commit, String state, String description) {
echo "Falling back to Status API..."
withCredentials([string(credentialsId: 'GITHUB_TOKEN', variable: 'GITHUB_TOKEN')]) {
sh(
script: """
curl -s -X POST \
-H "Authorization: token \${GITHUB_TOKEN}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${owner}/${repo}/statuses/${commit} \
-d '{
"state": "${state}",
"target_url": "${env.BUILD_URL}",
"description": "${description}",
"context": "Jenkins CI"
}'
""",
returnStdout: false
)
echo "✓ Status API fallback completed"
}
}
pipeline {
agent any
tools {
nodejs 'NodeJS'
}
environment {
FRONTEND_DIR = 'frontend'
BACKEND_DIR = 'backend'
NODE_ENV = 'test'
}
stages {
stage('Checkout') {
steps {
echo '🔄 Checking out code...'
checkout scm
script {
// Notify GitHub about build status using GitHub Status API
updateGitHubStatus('pending', 'Build started')
}
}
}
stage('Environment Info') {
steps {
sh '''
echo "Node Version: $(node --version)"
echo "NPM Version: $(npm --version)"
echo "Directory: $(pwd)"
echo "Branch: ${GIT_BRANCH}"
echo "Commit: ${GIT_COMMIT}"
'''
}
}
stage('Install Dependencies') {
parallel {
stage('Backend Deps') {
steps {
dir(BACKEND_DIR) {
echo '📦 Installing backend deps...'
sh 'npm ci --prefer-offline --no-audit'
}
}
}
stage('Frontend Deps') {
steps {
dir(FRONTEND_DIR) {
echo '📦 Installing frontend deps...'
sh 'npm ci --prefer-offline --no-audit'
}
}
}
}
}
stage('Lint') {
parallel {
stage('Backend Lint') {
steps {
dir(BACKEND_DIR) {
echo '🔍 Backend Lint...'
script {
if (fileExists('package.json')) {
sh 'npm run lint'
} else {
echo "ℹ️ No lint script found"
}
}
}
}
}
stage('Frontend Lint') {
steps {
dir(FRONTEND_DIR) {
echo '🔍 Frontend Lint...'
script {
if (fileExists('package.json')) {
sh 'npm run lint'
} else {
echo "ℹ️ No lint script found"
}
}
}
}
}
}
}
stage('Run Tests') {
parallel {
stage('Backend Tests') {
steps {
dir(BACKEND_DIR) {
echo '🧪 Backend Tests...'
sh 'CI=true npm test -- --coverage --watchAll=false'
}
}
}
stage('Frontend Tests') {
steps {
dir(FRONTEND_DIR) {
echo '🧪 Frontend Tests...'
sh 'CI=true npm test -- --coverage --watchAll=false'
}
}
post {
always {
dir(FRONTEND_DIR) {
archiveArtifacts artifacts: 'coverage/**/*', allowEmptyArchive: true
}
}
}
}
}
}
stage('Build') {
parallel {
stage('Build Frontend') {
steps {
dir(FRONTEND_DIR) {
echo '🏗️ Building frontend...'
sh '''
export NODE_OPTIONS="--experimental-webstorage --localstorage-file=./localStorage.json"
npm run build
'''
}
}
}
stage('Validate Backend Structure') {
steps {
dir(BACKEND_DIR) {
echo '📁 Validating backend files...'
sh '''
test -f package.json
test -f app.js
test -d routes
test -d controllers
test -d models
'''
}
}
}
}
}
stage('Security Audit') {
steps {
echo '🔒 Running npm audit...'
dir(FRONTEND_DIR) {
sh 'npm audit --audit-level=moderate || true'
}
dir(BACKEND_DIR) {
sh 'npm audit --audit-level=moderate || true'
}
}
}
stage('Archive Build Artifacts') {
steps {
echo '📦 Archiving build artifacts...'
archiveArtifacts artifacts: "${FRONTEND_DIR}/build/**/*", allowEmptyArchive: true
}
}
}
post {
success {
echo '✅ Pipeline succeeded!'
script {
updateGitHubStatus('success', 'Build passed')
}
}
failure {
echo '❌ Pipeline failed!'
script {
updateGitHubStatus('failure', 'Build failed')
}
}
unstable {
echo '⚠️ Pipeline unstable!'
script {
updateGitHubStatus('error', 'Build unstable')
}
}
always {
echo '🧹 Cleaning workspace...'
cleanWs()
}
}
}