Jenkinsfile
Some checks failed
chaos/docker-salt-master/pipeline/head There was a failure building this commit
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2023-10-20 15:42:06 +02:00
parent 1d590689e3
commit 91536703cb

12
Jenkinsfile vendored
View File

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