jenkins allure采坑

使用jenkinFile集成allure的过程中,找不到对应的结果文件。
如果不去控制results生成位置,系统会默认生成到"项目名\build\allure-results"。
可以多设置几个目录,如果第一个没找到。那就去第二个目录找。

pipeline {
    stages {
         stage('Publish reports-allure') {
              steps {
                  script {
                    allure([
                        includeProperties: false,
                        jdk: '',
                        properties: [],
                        reportBuildPolicy: 'ALWAYS',
                        results: [[path: '项目名\\build\\allure-results'],[path: '项目名\\target\\allure-results']] //如果第一个path没找到,就去第二个目录中找
                    ])
                  }
              }
          }
    }

你可能感兴趣的:(jenkins allure采坑)