Hello, i am able to trigger my provider build succ...
# pact-jvm
s
Hello, i am able to trigger my provider build successfully through "contract_requiring_verification_published" event. but the provider verification takes contract with commit id from consumer's master branch, rather then the feature branch which triggered this verification. How can I force provider verification to use this commit id? I am triggering the drone build like this
Copy code
<https://ci-server/api/repos/comp/proj/builds?branch=ct_update_consumer_ver&pact_url=${pactbroker.pactUrl}&pact_consumer=${pactbroker.consumerName}&pact_consumer_branch=${pactbroker.consumerVersionBranch}&pact_consumer_version=${pactbroker.consumerVersionNumber}>
and pact tests are getting executed with simple gradle run test which runs everything else too
Copy code
- ./gradlew clean build -PisDroneCI=true -Prevision=${DRONE_COMMIT} -Ptag=${DRONE_TAG} -PbuildNumber=${DRONE_BUILD_NUMBER} -PbuildVersion=$(cat .tags) --stacktrace