This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
docker-salt-master/Jenkinsfile
Udo Waechter 92cc176d1f
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
Jenkinsfile
2023-10-20 15:43:30 +02:00

14 lines
180 B
Groovy

pipeline {
agent none
stages{
stage("Hello"){
agent('nomad') {
script {
sh "echo 'Hello World!'"
}
}
}
}
}