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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
198 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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' | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
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 ('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' | ||
} | ||
} | ||
|
||
} |