Jenkinsfile

This commit is contained in:
2023-10-20 15:38:12 +02:00
parent 9a432932a0
commit 93dd080c4e
2 changed files with 23 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,12 @@
pipeline {
node('nomad') {
steps{
step("Hello"){
sh "echo 'Hello World!'"
}
}
}
}