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 pathatc-jenkinsfile
104 lines (84 loc) · 2.5 KB
/
atc-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
pipeline{
agent {
label 'jenkins-agent'
}
environment {
// PIPELINE_HASH = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
HARBOR_REGISTRY = 'harbor.dev.afsmtddso.com'
HARBOR_PROJECT = 'mdowell-harbor-project'
APP_IMAGE_NAME = 'mgl-webapp'
JENKINS_HARBOR_CREDENTIAL_ID = 'mdowell-harbor-auth'
}
stages {
stage ('Compile Stage') {
steps {
git url: 'https://github.com/ATC-Custom-Bootcamp/java-companion-project.git',
branch: 'web-automation-testing',
credentialsId: "$JENKINS_HARBOR_CREDENTIAL_ID"
withMaven() {
sh 'mvn clean compile -fae'
}
}
}
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 {
echo "On Integration Test stage"
dir("web-automation-testing") {
withMaven() {
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'
}
}
}