mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2024-12-13 11:27:08 +02:00
Указание полного пути на удаленной машине для results
This commit is contained in:
parent
bdcfd87a47
commit
533a24187f
@ -34,15 +34,12 @@ class PublishAllure implements Serializable {
|
||||
|
||||
def allureSubDirs = allurePath.listDirectories()
|
||||
if (allureSubDirs.size() > 0) {
|
||||
allureSubDirs.forEach({ filePath -> results.add(getPath(filePath)) })
|
||||
allureSubDirs.forEach({ filePath -> results.add(filePath.getRemote()) })
|
||||
} else {
|
||||
results.add(getPath(allurePath))
|
||||
results.add(allurePath.getRemote())
|
||||
}
|
||||
|
||||
steps.allure(results)
|
||||
}
|
||||
|
||||
private static String getPath(FilePath filePath) {
|
||||
filePath.getBaseName() + File.separator + filePath.getName()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user