1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-03-17 21:17:50 +02:00

Исправление шага архивирования артефактов

This commit is contained in:
Nikita Gryzlov 2020-04-17 14:31:30 +03:00
parent 019c58c4c8
commit 538d715c2c
No known key found for this signature in database
GPG Key ID: C1EAE411FEF0BF2F

View File

@ -5,6 +5,8 @@ def call(JobConfiguration config) {
ContextRegistry.registerDefaultContext(this)
// TODO: Вынести в отдельный класс по аналогии с SonarScanner
printLocation()
if (!config.stageFlags.syntaxCheck) {
@ -38,5 +40,5 @@ def call(JobConfiguration config) {
junit allowEmptyResults: true, testResults: options.pathToJUnitReport
archiveArtifacts 'build/**/*.*', excludes: '*.1CD'
archiveArtifacts artifacts: 'build/**/*.*', excludes: '**/*.1CD'
}