Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-37475

Add a configurable switch on job that causes CPS to silently not continue on non-serializable code

XMLWordPrintable

    • Icon: Improvement Improvement
    • Resolution: Duplicate
    • Icon: Minor Minor
    • pipeline
    • None

      Allow the addition of a configurable switch on the job that causes CPS to silently not continue on non-serializable code, and a closure that allows you to place arbitrary non-serializable code inline (rather than a method annotation).
      Example:

      def myString = 'adsfasdf'
      def firstTwoLetters = null
      unsafe {
      def matcher = (myString ~= /([a-z]

      {2}

      ).*/)
      if(matcher.matches()){
      firstTwoLetters = matcher.group(1)
      }
      }
      println(firstTwoLetters)

            jglick Jesse Glick
            dtranter Dan Tranter
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: