1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-28 05:46:35 +02:00

Create opm_update

This commit is contained in:
Anton 2024-10-13 14:57:25 +03:00
parent 0f4faff7ab
commit d92656b722

15
ci/opm_update Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Update') {
steps {
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.14.0.ospx; del oint-1.14.0.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build; opm install -f oint-cli-1.14.0.ospx; del oint-cli-1.14.0.ospx'
}
}
}
}