s421818-mlworkshops/Jenkinsfile

10 lines
189 B
Plaintext
Raw Normal View History

2020-04-03 11:24:17 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2020-04-03 11:40:07 +02:00
checkout: 'https://git.wmi.amu.edu.pl/s421818/s421818-mlworkshops'
2020-04-03 11:24:17 +02:00
}
}
}
}