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