17 lines
222 B
Groovy
17 lines
222 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'vato.ddns.net:8083/python:alpine'
|
|
}
|
|
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'cd python'
|
|
sh 'python setup.py bdist_wheel'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |