oginstaller/Jenkinsfile

15 lines
350 B
Groovy

pipeline {
agent {
label 'ogAdministrator'
}
stages {
stage('Build') {
steps {
sh "echo root > root_passwd"
sh 'docker run --privileged -v /dev:/dev -v /run:/run -v $(pwd):/installer -w /installer --rm opengnsys/oginstallerbuilder ./builder.sh'
}
}
}
}