1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-21 21:27:27 +02:00
OpenIntegrations/ci/opm_update
2024-12-31 11:13:22 +03:00

16 lines
451 B
Plaintext
Vendored

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