Add Jenkinsfile

This commit is contained in:
vato007
2020-07-30 10:32:50 +00:00
parent 84b671fdaa
commit 196014039c

17
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,17 @@
pipeline {
agent {
docker {
image 'vato.ddns.net:8083/python:alpine'
}
}
stages {
stage('Build') {
steps {
sh 'pip install setuptools wheel'
sh 'python python/setup.py bdist_wheel'
}
}
}
}