1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-06 21:04:14 +02:00
Files
OpenIntegrations/ci/opm_update
T
2025-02-13 10:04:37 +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.19.0.ospx; del oint-1.19.0.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build; opm install -f oint-cli-1.19.0.ospx; del oint-cli-1.19.0.ospx'
}
}
}
}