1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-01 13:17:58 +02:00
OpenIntegrations/ci/opm_update

16 lines
451 B
Plaintext
Raw Normal View History

2024-10-13 14:57:25 +03:00
pipeline {
agent any
stages {
stage('Update') {
steps {
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.15.1.ospx; del oint-1.15.1.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build; opm install -f oint-cli-1.15.1.ospx; del oint-cli-1.15.1.ospx'
2024-10-13 14:57:25 +03:00
}
}
}
}