Files
hash_utils/jenkinsfile
thelilfrog d1cf442fdb
All checks were successful
hash_utils/pipeline/head This commit looks good
Ajouter jenkinsfile
2025-09-07 00:11:16 +02:00

11 lines
147 B
Plaintext

pipeline {
agent any
stages {
stage('Build') {
steps {
sh './build.sh'
}
}
}
}