Files
breezyslam/Jenkinsfile
2020-07-30 11:02:48 +00:00

19 lines
242 B
Groovy

pipeline {
agent {
docker {
image 'vato.ddns.net:8083/python:buster'
}
}
stages {
stage('Build') {
steps {
dir(path: 'python') {
sh 'python setup.py bdist_wheel'
}
}
}
}
}