Files
breezyslam/Jenkinsfile
2020-07-30 20:21:53 +09:30

18 lines
235 B
Groovy

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