Pipeline 1 #22

Merged
sorel merged 1 commits from pipeline1 into main 2026-04-30 14:51:43 +00:00
Showing only changes of commit 15c33efc14 - Show all commits

10
Jenkinsfile vendored
View File

@@ -4,8 +4,14 @@ pipeline
stages
{
stage ( 'checkout' ){ steps {sh 'echo "Debut du pipeline"' } }
stage ( 'checkout' ){ steps { checkout scm } }
stage ( 'checkout' )
{
steps
{
'echo "Debut du pipeline"'
checkout scm
}
}
stage ( 'Deploiement' )
{
when { branch 'main' }