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 860c9873a5
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
chaos/docker-salt-master/pipeline/head Build queued...
Jenkinsfile
2023-10-20 15:46:28 +02:00

18 lines
228 B
Groovy

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