1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-03 22:39:12 +02:00
Files
OpenIntegrations/ci/opm_update

18 lines
467 B
Plaintext
Raw Normal View History

2025-07-06 01:01:25 +03:00
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'
2025-07-06 01:01:25 +03:00
}
}
}
}