Skip to content

Commit

Permalink
исправлены пути к артефактам
Browse files Browse the repository at this point in the history
  • Loading branch information
artbear committed Feb 14, 2019
1 parent 44229df commit 057ca0d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/jenkins/Jenkinsfile-fast
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ node("slave") {

makeArtifacts('**/ServiceBases/**/junitreport/**')
makeArtifacts('**/ServiceBases/**/allurereport/**')
makeArtifacts('**/build/*.xml')
makeArtifacts('**/build/junit-tdd/*.xml')
makeArtifacts('**/build/junit-smoke/*.xml')
makeArtifacts('**/build/**/*.txt')
makeArtifacts('**/build/**/*.xml')
}
Expand All @@ -318,7 +319,7 @@ def makeArtifacts(path) {
// archiveArtifacts allowEmptyArchive: true, artifacts: '*.xml'
step([$class: 'ArtifactArchiver', artifacts: "${path}", fingerprint: true, allowEmptyArchive: true])
} catch (e) {
echo "report status : ${e}"
echo "artifacts status : ${e}"
currentBuild.result = 'UNSTABLE'
}
}
Expand Down

0 comments on commit 057ca0d

Please sign in to comment.