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
14 lines
183 B
Groovy
14 lines
183 B
Groovy
pipeline {
|
|
agent {
|
|
label 'nomad'
|
|
}
|
|
|
|
stages {
|
|
stage ('Hello') {
|
|
script {
|
|
sh "echo 'Hello World!'"
|
|
}
|
|
}
|
|
}
|
|
}
|