1
0

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

This commit is contained in:
Nikita Gryzlov
2020-04-17 14:31:30 +03:00
parent 019c58c4c8
commit 538d715c2c

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'
}