mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-06-20 09:19:27 +02:00
Правка пайплайна публикации релиза, дополнение перевода
This commit is contained in:
@@ -1,17 +1,35 @@
|
||||
pipeline {
|
||||
agent {
|
||||
label 'windows'
|
||||
}
|
||||
agent {
|
||||
label 'windows'
|
||||
}
|
||||
|
||||
parameters {
|
||||
booleanParam(
|
||||
name: 'CONFIRM_RUN',
|
||||
defaultValue: false,
|
||||
description: 'Confirmation'
|
||||
)
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Check confirmation') {
|
||||
steps {
|
||||
script {
|
||||
if (!params.CONFIRM_RUN) {
|
||||
error('Pipeline execution cancelled. Set CONFIRM_RUN=true to proceed.')
|
||||
}
|
||||
}
|
||||
echo 'Confirmation received. Starting pipeline execution...'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Melezh - Docker') {
|
||||
steps {
|
||||
build job: 'Melezh/MelezhDocker', wait: true,
|
||||
parameters: [
|
||||
[$class: 'StringParameterValue', name: 'VERSION', value: '1.34.0'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.11.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '1.34.0'],
|
||||
[$class: 'StringParameterValue', name: 'VERSION', value: '0.12.0'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.12.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '1.35.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_BUILD_ID', value: 'lastSuccessfulBuild'],
|
||||
[$class: 'BooleanParameterValue', name: 'PUSH_TO_STABLE', value: true]
|
||||
]
|
||||
|
||||
+10863
-10818
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user