Compare commits

..

No commits in common. "ceabe3f6f8ea6b65d3bb7fb43ff09b28dbde6754" and "ab669b9f5e591f0b266deb92feb16592d93ed8b9" have entirely different histories.

22
Jenkinsfile vendored
View File

@ -1,22 +0,0 @@
pipeline {
agent any
stages {
stage('migration') {
steps {
script {
sh 'pipenv run makemigrations'
}
}
}
stage('build') {
steps {
script {
sh 'cd django_lostplaces'
sh 'python setup.py bdist_wheel --universal'
}
}
}
}
}