-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
78 lines (64 loc) · 2.21 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
pipeline {
agent any
parameters {
choice( name: 'BRANCH',
choices: ['test', 'master'],
description: 'Select branch to run tests')
}
stages {
stage ('Fetch repo') {
steps {
script {
// Get the current build number
def buildNumber = currentBuild.number
// Get the current branch name
def branchName = params.BRANCH
// Set the custom display name
currentBuild.displayName = "#${buildNumber} - ${branchName}"
// Construct the dynamic stage title
// def dynamicTitle = "Stage for branch ${branchName} - Build ${buildNumber}"
// currentBuild.displayName = dynamicTitle
}
git branch: '${BRANCH}', url: 'file:///D:/Java%20Projects/ToDocial-Social-Todo-Manager'
}
}
stage ('Install'){
steps {
echo "Installing dependencies"
}
}
stage ('Lint') {
steps {
echo "Linting..."
}
}
stage ('Test') {
steps {
//echo "hi"
bat "mvn clean test"
//bat "mvn clean test -Dtest=GymUtilsTest"
}
}
stage ('Deployment') {
when {
expression { BRANCH == 'master'}
}
steps {
input message: 'Really deploy on master', ok: 'Yes'
echo "deploying on ${BRANCH}"
}
}
}
post {
always {
// Display Surefire test results
junit allowEmptyResults: true, testResults: 'target/surefire-reports/*.xml'
//junit allowEmptyResults: true, testResults: '**/pylint_junit.xml'
jacoco(
execPattern: 'target/jacoco.exec',
classPattern: 'target/classes/com/jalizadeh/todocial',
sourcePattern: 'src/main'
)
}
}
}