::
This commit is contained in:
parent
1d787a3b1d
commit
6b33d20f90
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -2,28 +2,28 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage("sync") {
|
stage('sync') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
git pull
|
sh 'git pull'
|
||||||
git checkout develop
|
sh 'git checkout develop'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("migration") {
|
stage('migration') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
pipenv run makemigrations
|
sh 'pipenv run makemigrations'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage("build") {
|
stage('build') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
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