s421818-mlworkshops/Jenkinsfile
2020-04-03 11:40:39 +02:00

10 lines
189 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
checkout: 'https://git.wmi.amu.edu.pl/s421818/s421818-mlworkshops'
}
}
}
}