This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
forked from Mbd06b/bootcamper-project
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathethosengine-jenkinsfile
116 lines (97 loc) · 3.07 KB
/
ethosengine-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
pipeline{
agent any
stages {
stage ('Compile Stage') {
steps {
git url: 'https://github.com/Mbd06b/bootcamper-project.git',
branch: 'web-automation-testing',
credentialsId: 'Ethosengine_Jenkins_SSH'
withMaven() {
sh 'mvn clean compile -fae'
}
}
}
stage ('Deploy Shared Artifacts') {
when {
anyOf {
changeset "pom.xml"
changeset "web-automatation-testing/*"
}
}
steps {
echo "Deploy parent pom"
withMaven(mavenSettingsConfig: '59f1c14a-2dc0-4bbd-8a9d-80b901007e0d') {
//skipping tests because we don't want to run the tests that we are packaging
sh 'mvn deploy --non-recursive'
}
dir("web-automation-testing") {
echo "Building Common Tests Jar"
withMaven(mavenSettingsConfig: '59f1c14a-2dc0-4bbd-8a9d-80b901007e0d') {
//skipping tests because we don't want to run the tests that we are packaging
sh 'mvn deploy -DskipTests'
}
}
}
}
stage ('Unit Test Stage') {
parallel {
stage ('jacoco start task') {
steps {
catchError( buildResult: 'SUCCESS', stageResult: 'SUCCESS') {
// steps that will throw an error, but not fail the build if they do
dir("mgl-webapp"){
withMaven() {
sh 'mvn test -fae'
}
}
}
}
}
stage ('jacoco task 2-1') {
steps {
dir("mgl-webapp_task2-1") {
script{
withMaven() {
try {
sh 'mvn test -fae'
currentBuild.result = "SUCCESS"
} catch (Exception e){
}
}
}
}
}
}
}
}
stage ('Integration Test Stage') {
steps {
dir("mgl-webapp_review") {
echo "On Integration Test stage"
withMaven(mavenSettingsConfig: '59f1c14a-2dc0-4bbd-8a9d-80b901007e0d') {
sh 'mvn integration-test -fae'
}
}
}
}
stage ('Linting Stage') {
steps {
echo "On Listing Stage";
}
}
stage ('Deploy Stage') {
steps {
echo "Deploy Stage"
}
}
}//stages
post {
always {
junit(
allowEmptyResults: true,
testResults: '**/test-reports/*.xml'
)
cucumber '**/*cucumber-report.json'
}
}
}