I'm trying to trigger a Jenkins multi-branch pipeline using the "Artifactory Trigger" plugin. I have set the "Enable Artifactory Trigger" in jenkins multi-branch Pipeline as follows but even when new artifacts are published to the path that is being watched, I never have a new Jenkins job triggered, Am I missing something here? Do I need to set something up on the Artifactory end too? Can someone please help?
CodePudding user response:
Multibranch triggering is supported since Jenkins Artifactory plugin 3.12.1. (
Read more about triggering pipelines here:
CodePudding user response:
The issue here appears to be with the Artifactory server URL configured.
Have you included any other extra strings apart from the URL? Like,
Artifactory 1: http://HOSTNAME/artifactory?
I suspect it from the screenshot you have shared.If yes, consider removing the other extra references and include the URL in the following format,
http://ARTIFACTORY_HOSTNAME:ARTIFACTORY_PORT/artifactory
This should help in resolving the reported issue.