Files
breezyslam/Jenkinsfile

16 lines
206 B
Groovy

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