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 91536703cb
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:42:06 +02:00

13 lines
166 B
Groovy

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