How to trigger Multibranch Pipeline Jenkins Job within regular pipeline job?
问题 I want to trigger a specific multibranch pipeline job ' maven-release-workflow-test ' (specific branch) within a regular pipeline job. Is there a special build() command pattern that i need to specify? The snippet generator just prints: no such job maven-release-workflow-test 回答1: Found the right pattern via trial and error: build 'maven-release-workflow-test/master' 来源: https://stackoverflow.com/questions/37322143/how-to-trigger-multibranch-pipeline-jenkins-job-within-regular-pipeline-job