add a simple test

This commit is contained in:
2023-09-12 10:28:39 +02:00
parent 6285d15873
commit dd3413a0bb
2 changed files with 17 additions and 0 deletions

10
automation/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { dockerfile true }
stages {
stage('Deployment') {
steps {
sh 'rsync -h'
}
}
}
}