We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ae2ab commit f3b736bCopy full SHA for f3b736b
vars/clangPipeline.groovy
@@ -164,7 +164,7 @@ def call(Map config = [:]) {
164
triggeredJobs.each { job ->
165
// trigger multibranch pipeline if we expect one
166
def job_name = env.BRANCH_NAME ? "${job}/${env.BRANCH_NAME.replace('/', '%2F')}" : job
167
- build job: "${job}/${branch}", wait: false
+ build job: job_name, wait: false
168
}
169
170
@@ -175,7 +175,7 @@ def call(Map config = [:]) {
175
176
177
178
179
180
181
0 commit comments