s416267-mlworkshops/Jenkinsfile

13 lines
227 B
Plaintext
Raw Normal View History

2020-04-03 11:22:15 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
2020-04-03 11:28:54 +02:00
echo 'Trigger Check'
2020-04-03 12:23:03 +02:00
checkout: 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops'
2020-04-03 11:22:15 +02:00
}
}
}
}