1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/ci/opm_update
2025-09-18 13:47:29 +03:00

18 lines
467 B
Plaintext
Vendored

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