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:45:33 +02:00
parent 92cc176d1f
commit ba3cce81e8

12
Jenkinsfile vendored
View File

@@ -1,13 +1,13 @@
pipeline { pipeline {
agent none agent {
stages{ label 'nomad'
stage("Hello"){ }
agent('nomad') {
stages {
stage ('Hello') {
script { script {
sh "echo 'Hello World!'" sh "echo 'Hello World!'"
} }
} }
} }
}
} }