21 lines
266 B
Groovy
21 lines
266 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('sync') {
|
|
steps {
|
|
git pull
|
|
git checkout develop
|
|
}
|
|
}
|
|
|
|
stage('migration') {
|
|
pipenv run makemigrations
|
|
}
|
|
|
|
stage('build') {
|
|
cd django_lostplaces
|
|
python setup.py bdist_wheel --universal
|
|
}
|
|
}
|
|
} |