1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-29 02:57:35 +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 {
2024-12-03 14:16:14 +02:00
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.16.1.ospx; del oint-1.16.1.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build; opm install -f oint-cli-1.16.1.ospx; del oint-cli-1.16.1.ospx'
2024-10-13 13:57:25 +02:00
}
}
}
}