s416267-mlworkshops/Jenkinsfile

13 lines
231 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:19:39 +02:00
checkout: 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops.git'
2020-04-03 11:22:15 +02:00
}
}
}
}