1
0

Merge branch 'develop' into yaxunit-pr

This commit is contained in:
Dima
2024-05-07 09:29:23 +03:00
5 changed files with 34 additions and 20 deletions

View File

@@ -106,6 +106,18 @@ void call() {
}
}
stage('Загрузка расширений в конфигурацию'){
when {
beforeAgent true
expression { config.needLoadExtensions() }
}
steps {
timeout(time: config.timeoutOptions.loadExtensions, unit: TimeUnit.MINUTES) {
loadExtensions config
}
}
}
stage('Инициализация ИБ') {
when {
beforeAgent true
@@ -119,17 +131,6 @@ void call() {
}
}
stage('Загрузка расширений в конфигурацию'){
when {
beforeAgent true
expression { config.needLoadExtensions() }
}
steps {
timeout(time: config.timeoutOptions.loadExtensions, unit: TimeUnit.MINUTES) {
loadExtensions config
}
}
}
stage('Архивация ИБ') {
steps {