Ajouter jenkinsfile
All checks were successful
hash_utils/pipeline/head This commit looks good

This commit is contained in:
2025-09-07 00:11:16 +02:00
parent e025b06a12
commit d1cf442fdb

11
jenkinsfile Normal file
View File

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