Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jenkins pipeline checks added #421

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Jenkinsfile_CNP
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,18 @@ withPipeline(type, product, app) {

}
disableLegacyDeployment()

onMaster() {
enablePactAs([AppPipelineDsl.PactRoles.PROVIDER])
enablePactAs([
AppPipelineDsl.PactRoles.PROVIDER,
AppPipelineDsl.PactRoles.CONSUMER
])
}
onPR() {
enablePactAs([
AppPipelineDsl.PactRoles.PROVIDER,
//AppPipelineDsl.PactRoles.CONSUMER
])
}

//Sync demo,ithc and perftest with master branch
Expand Down
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,13 @@ subprojects {
}
}

task runAndPublishConsumerPactTests(type: Test){
logger.lifecycle("Running Pact consumer verification Tests")
systemProperty 'pact.verifier.publishResults',System.getProperty("pact.verifier.publishResults")
}

runAndPublishConsumerPactTests.finalizedBy pactVerify

task runProviderPactVerification(type: Test){
logger.lifecycle("Running Pact provider verification Tests")
systemProperty 'pact.verifier.publishResults',System.getProperty("pact.verifier.publishResults")
Expand Down