1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-11-21 17:56:56 +02:00
OpenIntegrations/ci/opm_update
2024-11-15 13:12:57 +03:00

16 lines
451 B
Plaintext

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