Skip to content

Commit

Permalink
unzipInfobase before loadExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Mar 19, 2024
1 parent 512fd5e commit 876009d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions vars/pipeline1C.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ void call() {
expression { config.stageFlags.bdd }
}
stages {
stage('Распаковка ИБ') {
unzipInfobase()
}

stage('Загрузка расширений в конфигурацию') {
when {
beforeAgent true
Expand All @@ -219,8 +223,6 @@ void call() {
stage('Выполнение BDD сценариев') {
steps {
timeout(time: config.timeoutOptions.bdd, unit: TimeUnit.MINUTES) {
unzipInfobase()

bdd config
}
}
Expand Down Expand Up @@ -252,6 +254,10 @@ void call() {
expression { config.stageFlags.smoke }
}
stages {
stage('Распаковка ИБ') {
unzipInfobase()
}

stage('Загрузка расширений в конфигурацию') {
when {
beforeAgent true
Expand All @@ -267,8 +273,6 @@ void call() {
stage('Выполнение дымовых тестов') {
steps {
timeout(time: config.timeoutOptions.smoke, unit: TimeUnit.MINUTES) {
unzipInfobase()

smoke config
}
}
Expand All @@ -285,6 +289,10 @@ void call() {
expression { config.stageFlags.yaxunit }
}
stages {
stage('Распаковка ИБ') {
unzipInfobase()
}

stage('Загрузка расширений в конфигурацию') {
when {
beforeAgent true
Expand All @@ -300,8 +308,6 @@ void call() {
stage('Выполнение YAXUnit тестов') {
steps {
timeout(time: config.timeoutOptions.yaxunit, unit: TimeUnit.MINUTES) {
unzipInfobase()

yaxunit config
}
}
Expand Down

0 comments on commit 876009d

Please sign in to comment.