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

fix conditions, add bdd

This commit is contained in:
Dima
2025-01-19 12:14:10 +03:00
parent 7a9ccaf28a
commit f77ac272c2
3 changed files with 20 additions and 8 deletions

View File

@@ -144,7 +144,7 @@ void call() {
timeout(time: config.timeoutOptions.zipInfoBase, unit: TimeUnit.MINUTES) {
printLocation()
zipInfobase config
zipInfobase config, 'initInfoBase'
}
}
}
@@ -237,6 +237,16 @@ void call() {
}
}
}
stage('Архивация ИБ') {
steps {
timeout(time: config.timeoutOptions.zipInfoBase, unit: TimeUnit.MINUTES) {
printLocation()
zipInfobase config, 'bdd'
}
}
}
}
}