s421818-mlworkshops/Jenkinsfile
2020-04-03 11:47:53 +02:00

11 lines
239 B
Groovy

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