1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

mv syntaxCheck to separate class, add publish to allure

This commit is contained in:
Dima
2025-01-17 13:18:50 +03:00
parent 89e104feec
commit 161a4f58b9
6 changed files with 135 additions and 70 deletions

View File

@@ -248,9 +248,19 @@ void call() {
beforeAgent true
expression { config.stageFlags.syntaxCheck }
}
steps {
timeout(time: config.timeoutOptions.syntaxCheck, unit: TimeUnit.MINUTES) {
syntaxCheck config
stages {
stage('Распаковка ИБ') {
steps {
unzipInfobase()
}
}
stage('Выполнение синтаксического контроля') {
steps {
timeout(time: config.timeoutOptions.syntaxCheck, unit: TimeUnit.MINUTES) {
syntaxCheck config
}
}
}
}
}