Ajouter jenkinsfile

This commit is contained in:
2025-09-07 00:13:35 +02:00
parent e0219ca728
commit 0c1a143dbd

11
jenkinsfile Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './build.sh'
}
}
}
}