Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can also import multiple results using a glob expression, like in the following example

Pipeline projects support

Xray for Jenkins provides support for pipelines projects.

Image Added

Code Block
languagegroovy
titleJenkinsfile example
pipeline {
    agent any
    stages {
        stage('Export Cucumber') {
            steps {
               step([$class: 'XrayExportBuilder', filePath: '\\features', issues: 'IF-1', serverInstance: '2ffc3a3e-9e2f-4279-abcd-e9301fe47bed'])
            }
        }
    }
}


Troubleshooting

The build process is failing with status code 403

...