Skip to content

Commit

Permalink
Фикс
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovEV committed Jan 18, 2024
1 parent e2cd336 commit 369adb1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,6 @@ class JobConfiguration implements Serializable {
(initMethod == InitInfoBaseMethod.DEFAULT_BRANCH_FROM_STORAGE && branchName != defaultBranch)
}

boolean needLoadExtintions() {
IStepExecutor steps = ContextRegistry.getContext().getStepExecutor()
def env = steps.env();
String branchName = env.BRANCH_NAME;
def extensions = initInfoBaseOptions.extensions

return extensions.length != 0
}

String v8AgentLabel() {
return v8version
Expand Down
8 changes: 0 additions & 8 deletions vars/pipeline1C.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ void call() {

stages {
stage('Сборка из исходников'){
when {
beforeAgent true
expression { config.needBuildStage() }
}
steps {
timeout(time: config.timeoutOptions.getBinaries, unit: TimeUnit.MINUTES) {
createDir('build/cfe')
Expand Down Expand Up @@ -124,10 +120,6 @@ void call() {
}

stage('Загрузка расширений в конфигурацию'){
when {
beforeAgent true
expression { config.needLoadExtintions() }
}
steps {
timeout(time: config.timeoutOptions.loadExtintions, unit: TimeUnit.MINUTES) {
loadExtensions config
Expand Down

0 comments on commit 369adb1

Please sign in to comment.