...
This commit is contained in:
parent
2c6676d2c9
commit
0c3898163e
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -2,20 +2,20 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('sync') {
|
stage("sync") {
|
||||||
steps {
|
steps {
|
||||||
git pull
|
sh "git pull"
|
||||||
git checkout develop
|
sh "git checkout develop"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('migration') {
|
stage("migration") {
|
||||||
pipenv run makemigrations
|
sh "pipenv run makemigrations"
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('build') {
|
stage("build") {
|
||||||
cd django_lostplaces
|
sh "cd django_lostplaces"
|
||||||
python setup.py bdist_wheel --universal
|
sh "python setup.py bdist_wheel --universal"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user