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 ba3cce81e8
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:45:33 +02:00

14 lines
183 B
Groovy

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