Files
sirh/Jenkinsfile
Soriba SYLLA 15c33efc14
Some checks failed
Organisation/sirh/pipeline/head There was a failure building this commit
Organisation/sirh/pipeline/pr-main Build queued...
Pipeline 1
2026-04-30 14:50:58 +00:00

30 lines
672 B
Groovy

pipeline
{
agent any
stages
{
stage ( 'checkout' )
{
steps
{
'echo "Debut du pipeline"'
checkout scm
}
}
stage ( 'Deploiement' )
{
when { branch 'main' }
steps {
sh '''
cd /jenkins_test/ && python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
echo "Deploiement reussi"
'''
}
}
}
}