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 {
agent none
stages{
stage("Hello"){
agent('nomad') {
agent {
label 'nomad'
}
stages {
stage ('Hello') {
script {
sh "echo 'Hello World!'"
}
}
}
}
}