declarative pipeline upstream trigger syntax not compiling anymore

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      Using an upstream trigger in a pipeline causes a compilation error

      org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
      WorkflowScript: 4: Invalid parameter "upstreamProjects", did you mean "upstreamFilterStrategy"? @ line 4, column 18.
                 upstream(upstreamProjects: "my_test_1")
                          ^
      

      and you get an additional error line if you specify the threshold attribute.

      Example pipelines for reproducing:

      my_test_1

      pipeline {
          agent any
          stages {
              stage("foo") {
                  steps {
                      echo "hi"
                  }
              }
          }
      }
      

      my_test_2

      pipeline {
          agent any
          triggers {
              upstream(upstreamProjects: "my_test_1")
          }
          stages {
              stage("bar") {
                  steps {
                      echo "hello"
                  }
              }
          }
      }
      

      Advice for further debugging or working around this issues is highly appreciated. Currently all our upstream-trigger-dependent projects are broken, i.e., they're not only not triggered, but the entire pipeline cannot run.

            Assignee:
            Andrew Bayer
            Reporter:
            Sir Tumbleweed
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: