You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-16 09:38:28 +02:00
Поднят номер версии
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@
|
||||
"value": {
|
||||
"version": {
|
||||
"description": "Current project version",
|
||||
"value": "2.0.0"
|
||||
"value": "2.1.0"
|
||||
},
|
||||
"repoUrl": {
|
||||
"description": "Repository URL",
|
||||
|
||||
@@ -18,7 +18,7 @@ pipeline {
|
||||
steps {
|
||||
build job: 'Melezh/MelezhRelease', wait: true,
|
||||
parameters: [
|
||||
string(name: 'MELEZH_VERSION', value: '0.12.0'),
|
||||
string(name: 'MELEZH_VERSION', value: '0.13.0'),
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -38,8 +38,8 @@ pipeline {
|
||||
build job: 'Melezh/MelezhDocker', wait: true,
|
||||
parameters: [
|
||||
[$class: 'StringParameterValue', name: 'VERSION', value: 'draft'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.12.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '2.0.0'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.13.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '2.1.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_BUILD_ID', value: 'lastSuccessfulBuild']
|
||||
]
|
||||
}
|
||||
|
||||
@@ -7,10 +7,10 @@ pipeline {
|
||||
steps {
|
||||
|
||||
withCredentials([string(credentialsId: 'opm-token', variable: 'TOKEN')]) {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm push --token $ENV:TOKEN --channel stable --file oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-2.1.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm push --token $ENV:TOKEN --channel stable --file oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build;'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm push --token $ENV:TOKEN --channel stable --file oint-cli-2.0.0.ospx; del oint-cli-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm push --token $ENV:TOKEN --channel stable --file oint-cli-2.1.0.ospx; del oint-cli-2.1.0.ospx'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -27,9 +27,9 @@ pipeline {
|
||||
steps {
|
||||
build job: 'Melezh/MelezhDocker', wait: true,
|
||||
parameters: [
|
||||
[$class: 'StringParameterValue', name: 'VERSION', value: '0.12.0'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.12.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '2.0.0'],
|
||||
[$class: 'StringParameterValue', name: 'VERSION', value: '0.13.0'],
|
||||
[$class: 'StringParameterValue', name: 'MELEZH_VERSION', value: '0.13.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_VERSION', value: '2.1.0'],
|
||||
[$class: 'StringParameterValue', name: 'OINT_BUILD_ID', value: 'lastSuccessfulBuild'],
|
||||
[$class: 'BooleanParameterValue', name: 'PUSH_TO_STABLE', value: true]
|
||||
]
|
||||
|
||||
@@ -14,7 +14,7 @@ pipeline {
|
||||
|
||||
stage('Archive') {
|
||||
steps {
|
||||
archiveArtifacts artifacts: '2.0.0/*'
|
||||
archiveArtifacts artifacts: '2.1.0/*'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_en.deb '
|
||||
sh 'wget -O oint_2.1.0_all_en.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_en.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_en.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_en.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый deb-пакет oint
|
||||
sh 'wget -O oint_2.0.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_ru.deb '
|
||||
sh 'wget -O oint_2.1.0_all_ru.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_all_ru.deb '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
stage('Install oint package') {
|
||||
steps {
|
||||
script {
|
||||
sh 'dpkg -i oint_2.0.0_all_ru.deb'
|
||||
sh 'dpkg -i oint_2.1.0_all_ru.deb'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_en.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_en.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_en.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_en.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_en.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Скачиваем новый rpm-пакет oint
|
||||
sh 'wget -O oint-2.0.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_ru.rpm '
|
||||
sh 'wget -O oint-2.1.0-1.noarch_ru.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint-2.1.0-1.noarch_ru.rpm '
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -43,14 +43,14 @@ pipeline {
|
||||
steps {
|
||||
script {
|
||||
// Устанавливаем скаченный пакет
|
||||
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_ru.rpm'
|
||||
sh 'rpm -ivh --replacepkgs oint-2.1.0-1.noarch_ru.rpm'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_en.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_en.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -23,7 +23,7 @@ pipeline {
|
||||
|
||||
stage('Decrypt Data') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
@@ -90,7 +90,7 @@ pipeline {
|
||||
stage('Download Installer') {
|
||||
steps {
|
||||
powershell encoding: 'UTF-8', script: '''
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_ru.exe "
|
||||
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.1.0/oint_2.1.0_installer_ru.exe "
|
||||
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
|
||||
Invoke-WebRequest -Uri $url -OutFile $output
|
||||
Write-Host "Инсталлер скачан в: $output"
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/en/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ pipeline {
|
||||
|
||||
stage('Prepare'){
|
||||
steps{
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
|
||||
sh 'cd ./src/ru/OInt && opm build && opm install oint-2.1.0.ospx && rm oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ pipeline {
|
||||
}
|
||||
stage('Build OInt from source and decrypt secret data'){
|
||||
steps{
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
|
||||
powershell encoding: 'UTF-8', script:'cd ./src/en/OInt; opm build; opm install oint-2.1.0.ospx; del oint-2.1.0.ospx'
|
||||
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
|
||||
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%GPGKEY%" --output ./data.json ./data.json.gpg'
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user