Add jenkinsfile
All checks were successful
CloudSave/pipeline/head This commit looks good

This commit is contained in:
2025-08-29 14:37:05 +02:00
parent 7ec9432d7b
commit 7bf88d9d8c

11
jenkinsfile Normal file
View File

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