Uploaded image for project: 'XWiki Infrastructure'
  1. XWiki Infrastructure
  2. XINFRA-245

Add ability to execute various custom maven executions when using the XWiki pipeline library

    XMLWordPrintable

Details

    • New Feature
    • Resolution: Fixed
    • Major
    • ci.xwiki.org
    • None
    • Unknown
    • N/A

    Description

      Jenkinsfile example 1:

      parallel(
          "standard": {
              node {
                  xwikiBuild {
                      xvnc = false
                      goals = "clean"
                  }
              }
          },
          "test": {
              node {
                  xwikiBuild {
                      xvnc = false
                      goals = "clean"
                  }
              }
          }
      )
      

      Jenkinsfile example 2:

      node {
        xwikiBuild {
          xvnc = false
          goals = "clean"
        }
      }
      

      Jenkinsfile example 3 (backward compat mostly):

      xwikiModule {
        xvnc = false
        goals = "clean"
      }
      

      Attachments

        Activity

          People

            vmassol Vincent Massol
            vmassol Vincent Massol
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: