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