1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-10 04:18:47 +02:00
OpenIntegrations/ci/opm_update

16 lines
451 B
Plaintext
Raw Normal View History

2024-10-13 13:57:25 +02:00
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'
}
}
}
}