Files
kontor/bottle/Jenkinsfile
T
2025-01-14 15:35:53 +01:00

14 lines
268 B
Groovy

node {
stage("Checkout") {
checkout scm
}
stage("setup virualenv") {
sh "virtualenv ."
sh "source bin/activate; pip install bottle pymongo"
}
stage("build") {
sh "source bin/activate; python setup.py sdist"
}
}