You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
574 B
23 lines
574 B
node('docker') {
|
|
|
|
stage('Checkout') {
|
|
git 'https://git.ercpe.de/ercpe/smart-check.git'
|
|
}
|
|
|
|
stage('CI') {
|
|
docker.withRegistry('https://r.ercpe.de', 'docker-registry') {
|
|
docker.image('r.ercpe.de/ercpe/python-build:latest').inside {
|
|
sh "make jenkins"
|
|
}
|
|
}
|
|
}
|
|
|
|
// stage('Debian packaging') {
|
|
// docker.withRegistry('https://r.ercpe.de', 'docker-registry') {
|
|
// docker.image('r.ercpe.de/ercpe/ubuntu-build:latest').inside {
|
|
// sh "make deb"
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
}
|