Test jenkins 1

This commit is contained in:
2026-04-30 12:47:18 +00:00
parent b9f9de19f5
commit 19e4675f32

13
jenkinsfile Normal file
View File

@@ -0,0 +1,13 @@
pipeline
{
agent { dockerfile true }
stages
{
stage ( 'Build' )
{
steps
{
echo 'Test réussi'
}
}
}