s460929-mlworkshops/Jenkinsfile

14 lines
191 B
Plaintext
Raw Normal View History

2020-04-03 11:21:41 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
2020-04-03 11:39:55 +02:00
//sh label:'', script: 'whoami'
2020-04-03 11:35:01 +02:00
2020-04-03 11:21:41 +02:00
}
}
}
}