add simplet test jenkinsfile

This commit is contained in:
TomPGrid 2025-02-26 11:36:50 +01:00
parent 841083a729
commit 9324e6ef3d

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Bulding'
}
}
}
}