17 lines
248 B
Groovy
17 lines
248 B
Groovy
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'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |